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/util/crdt/lww.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/util/crdt/lww.rs')
-rw-r--r-- | src/util/crdt/lww.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/crdt/lww.rs b/src/util/crdt/lww.rs index 254abe8e..958844c9 100644 --- a/src/util/crdt/lww.rs +++ b/src/util/crdt/lww.rs @@ -37,7 +37,7 @@ use crate::crdt::crdt::*; /// /// This scheme is used by AWS S3 or Soundcloud and often without knowing /// in enterprise when reconciliating databases with ad-hoc scripts. -#[derive(Clone, Debug, Serialize, Deserialize, PartialEq)] +#[derive(Clone, Debug, Serialize, Deserialize, PartialEq, Eq)] pub struct Lww<T> { ts: u64, v: T, |