From f2cd9018844130d441820742dc1cf1c7abeaa38b Mon Sep 17 00:00:00 2001 From: Julian Antonielli Date: Fri, 7 Oct 2022 12:08:26 +0100 Subject: [PATCH] Implement Eq on types in aws-smithy-http-server-python --- rust-runtime/aws-smithy-http-server-python/src/types.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rust-runtime/aws-smithy-http-server-python/src/types.rs b/rust-runtime/aws-smithy-http-server-python/src/types.rs index 98adbd4119..48dc0a6926 100644 --- a/rust-runtime/aws-smithy-http-server-python/src/types.rs +++ b/rust-runtime/aws-smithy-http-server-python/src/types.rs @@ -26,7 +26,7 @@ use crate::PyError; /// Python Wrapper for [aws_smithy_types::Blob]. #[pyclass] -#[derive(Debug, Clone, PartialEq)] +#[derive(Debug, Clone, PartialEq, Eq)] pub struct Blob(aws_smithy_types::Blob); impl Blob { @@ -88,7 +88,7 @@ impl<'blob> From<&'blob Blob> for &'blob aws_smithy_types::Blob { /// Python Wrapper for [aws_smithy_types::date_time::DateTime]. #[pyclass] -#[derive(Debug, Clone, PartialEq)] +#[derive(Debug, Clone, PartialEq, Eq)] pub struct DateTime(aws_smithy_types::date_time::DateTime); #[pyclass]