Another constructor for a disabled counter
(name: &'static str, limit: u32)
| 21 | fn wait(&self, _millis: u64, _nanos: i32) {} |
| 22 | } |
| 23 | |
| 24 | struct NonConflictingWait; |
| 25 | |
| 26 | impl NonConflictingWait { |
| 27 | fn wait(&self, value: i32) -> i32 { |
| 28 | value + 1 |
| 29 | } |
| 30 | } |
nothing calls this directly
no outgoing calls
no test coverage detected