(self, earlier: Self)
| 52 | } |
| 53 | |
| 54 | pub(crate) fn duration_since(self, earlier: Self) -> i64 { |
| 55 | self.0.saturating_sub(earlier.0) |
| 56 | } |
| 57 | |
| 58 | pub(crate) fn floor_to_hour(self) -> Self { |
| 59 | Self(self.0.div_euclid(MILLIS_PER_HOUR) * MILLIS_PER_HOUR) |
no outgoing calls
no test coverage detected