crdt: run cargo fmt

This commit is contained in:
Fintan Halpenny 2024-08-07 13:41:58 +01:00 committed by cloudhead
parent e1470fccd7
commit 86a0443916
No known key found for this signature in database
1 changed files with 2 additions and 6 deletions

View File

@ -146,14 +146,10 @@ impl std::ops::Add<u64> for Physical {
impl Bounded for Physical {
fn min_value() -> Self {
Self {
seconds: u64::MIN,
}
Self { seconds: u64::MIN }
}
fn max_value() -> Self {
Self {
seconds: u64::MAX,
}
Self { seconds: u64::MAX }
}
}