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/model/prev/v051/object_table.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/model/prev/v051/object_table.rs')
-rw-r--r-- | src/model/prev/v051/object_table.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/model/prev/v051/object_table.rs b/src/model/prev/v051/object_table.rs index cb59b309..e79e5787 100644 --- a/src/model/prev/v051/object_table.rs +++ b/src/model/prev/v051/object_table.rs @@ -6,7 +6,7 @@ use garage_util::data::*; use garage_table::crdt::*; /// An object -#[derive(PartialEq, Clone, Debug, Serialize, Deserialize)] +#[derive(PartialEq, Eq, Clone, Debug, Serialize, Deserialize)] pub struct Object { /// The bucket in which the object is stored, used as partition key pub bucket: String, @@ -26,7 +26,7 @@ impl Object { } /// Informations about a version of an object -#[derive(PartialEq, Clone, Debug, Serialize, Deserialize)] +#[derive(PartialEq, Eq, Clone, Debug, Serialize, Deserialize)] pub struct ObjectVersion { /// Id of the version pub uuid: Uuid, @@ -37,7 +37,7 @@ pub struct ObjectVersion { } /// State of an object version -#[derive(PartialEq, Clone, Debug, Serialize, Deserialize)] +#[derive(PartialEq, Eq, Clone, Debug, Serialize, Deserialize)] pub enum ObjectVersionState { /// The version is being received Uploading(ObjectVersionHeaders), |