(&mut self, time: Instant)
| 544 | |
| 545 | impl StartTimes { |
| 546 | fn add(&mut self, time: Instant) { |
| 547 | *self.0.entry(time).or_insert(0) += 1; |
| 548 | } |
| 549 | |
| 550 | fn remove(&mut self, time: Instant) { |
| 551 | let Entry::Occupied(mut entry) = self.0.entry(time) else { |
no test coverage detected