From 78f4b07344d2cbb9d06b30ffd9bad16031fdd83b Mon Sep 17 00:00:00 2001 From: Julian Antonielli Date: Fri, 7 Oct 2022 12:09:05 +0100 Subject: [PATCH] Implement Eq on types in aws-smithy-eventstream --- rust-runtime/aws-smithy-eventstream/src/frame.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust-runtime/aws-smithy-eventstream/src/frame.rs b/rust-runtime/aws-smithy-eventstream/src/frame.rs index dbe0a638a3..2be5c688b0 100644 --- a/rust-runtime/aws-smithy-eventstream/src/frame.rs +++ b/rust-runtime/aws-smithy-eventstream/src/frame.rs @@ -96,7 +96,7 @@ mod value { /// Event Stream frame header value. #[non_exhaustive] - #[derive(Clone, Debug, PartialEq)] + #[derive(Clone, Debug, PartialEq, Eq)] pub enum HeaderValue { Bool(bool), Byte(i8),