Skip to content

Commit

Permalink
Implement Eq on types in aws-smithy-http-server-python
Browse files Browse the repository at this point in the history
  • Loading branch information
jjant committed Oct 7, 2022
1 parent c45a6b5 commit f2cd901
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rust-runtime/aws-smithy-http-server-python/src/types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down Expand Up @@ -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]
Expand Down

0 comments on commit f2cd901

Please sign in to comment.