(mut self)
| 48 | /// Pull the timestamp to a sooner minor time |
| 49 | #[must_use] |
| 50 | pub fn pull(mut self) -> Self { |
| 51 | self.minor = self.minor.checked_sub(1).unwrap(); |
| 52 | self |
| 53 | } |
| 54 | } |
| 55 | |
| 56 | impl PartialOrd for Timestamp { |
no outgoing calls
no test coverage detected