Skip to content

Commit f2cd901

Browse files
committed
Implement Eq on types in aws-smithy-http-server-python
1 parent c45a6b5 commit f2cd901

File tree

1 file changed

+2
-2
lines changed
  • rust-runtime/aws-smithy-http-server-python/src

1 file changed

+2
-2
lines changed

rust-runtime/aws-smithy-http-server-python/src/types.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ use crate::PyError;
2626

2727
/// Python Wrapper for [aws_smithy_types::Blob].
2828
#[pyclass]
29-
#[derive(Debug, Clone, PartialEq)]
29+
#[derive(Debug, Clone, PartialEq, Eq)]
3030
pub struct Blob(aws_smithy_types::Blob);
3131

3232
impl Blob {
@@ -88,7 +88,7 @@ impl<'blob> From<&'blob Blob> for &'blob aws_smithy_types::Blob {
8888

8989
/// Python Wrapper for [aws_smithy_types::date_time::DateTime].
9090
#[pyclass]
91-
#[derive(Debug, Clone, PartialEq)]
91+
#[derive(Debug, Clone, PartialEq, Eq)]
9292
pub struct DateTime(aws_smithy_types::date_time::DateTime);
9393

9494
#[pyclass]

0 commit comments

Comments
 (0)