diff options
author | Alex Auvolat <alex@adnab.me> | 2022-09-13 16:08:00 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2022-09-13 16:08:00 +0200 |
commit | 38be811b1cd20d9223b481c0ea91cc7e3ee795dc (patch) | |
tree | 1d857b13d2137b0cb032a8489e8459390c12ae9a /src/api/s3/copy.rs | |
parent | 44733474bb6c9021c92b59e5c349b4b7ef71409a (diff) | |
download | garage-38be811b1cd20d9223b481c0ea91cc7e3ee795dc.tar.gz garage-38be811b1cd20d9223b481c0ea91cc7e3ee795dc.zip |
Fix clippy lint that says we should implement Eq
Diffstat (limited to 'src/api/s3/copy.rs')
-rw-r--r-- | src/api/s3/copy.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/api/s3/copy.rs b/src/api/s3/copy.rs index c5a0fc11..7eb6459d 100644 --- a/src/api/s3/copy.rs +++ b/src/api/s3/copy.rs @@ -609,7 +609,7 @@ impl<S: Stream<Item = BlockStreamItem>> Defragmenter<S> { } } -#[derive(Debug, Serialize, PartialEq)] +#[derive(Debug, Serialize, PartialEq, Eq)] pub struct CopyObjectResult { #[serde(rename = "LastModified")] pub last_modified: s3_xml::Value, @@ -617,7 +617,7 @@ pub struct CopyObjectResult { pub etag: s3_xml::Value, } -#[derive(Debug, Serialize, PartialEq)] +#[derive(Debug, Serialize, PartialEq, Eq)] pub struct CopyPartResult { #[serde(serialize_with = "xmlns_tag")] pub xmlns: (), |