aboutsummaryrefslogtreecommitdiff
path: root/src/api/s3/copy.rs
diff options
context:
space:
mode:
authorAlex Auvolat <alex@adnab.me>2022-09-13 16:08:00 +0200
committerAlex Auvolat <alex@adnab.me>2022-09-13 16:08:00 +0200
commit38be811b1cd20d9223b481c0ea91cc7e3ee795dc (patch)
tree1d857b13d2137b0cb032a8489e8459390c12ae9a /src/api/s3/copy.rs
parent44733474bb6c9021c92b59e5c349b4b7ef71409a (diff)
downloadgarage-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.rs4
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: (),