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/bucket_alias_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/bucket_alias_table.rs')
-rw-r--r-- | src/model/bucket_alias_table.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/model/bucket_alias_table.rs b/src/model/bucket_alias_table.rs index fce03d04..fcd1536e 100644 --- a/src/model/bucket_alias_table.rs +++ b/src/model/bucket_alias_table.rs @@ -7,7 +7,7 @@ use garage_table::*; /// The bucket alias table holds the names given to buckets /// in the global namespace. -#[derive(PartialEq, Clone, Debug, Serialize, Deserialize)] +#[derive(PartialEq, Eq, Clone, Debug, Serialize, Deserialize)] pub struct BucketAlias { name: String, pub state: crdt::Lww<Option<Uuid>>, |