crdt: run cargo fmt
This commit is contained in:
parent
e1470fccd7
commit
86a0443916
|
|
@ -146,14 +146,10 @@ impl std::ops::Add<u64> for Physical {
|
||||||
|
|
||||||
impl Bounded for Physical {
|
impl Bounded for Physical {
|
||||||
fn min_value() -> Self {
|
fn min_value() -> Self {
|
||||||
Self {
|
Self { seconds: u64::MIN }
|
||||||
seconds: u64::MIN,
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
fn max_value() -> Self {
|
fn max_value() -> Self {
|
||||||
Self {
|
Self { seconds: u64::MAX }
|
||||||
seconds: u64::MAX,
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue