()
| 53 | |
| 54 | #[track_caller] |
| 55 | const fn warn() -> Self { |
| 56 | Self(BombState::Warn( |
| 57 | #[cfg(any(all(not(target_arch = "wasm32"), feature = "std"), feature = "tracing"))] |
| 58 | Location::caller(), |
| 59 | )) |
| 60 | } |
| 61 | |
| 62 | const fn defuse(&mut self) { |
| 63 | self.0 = BombState::Defused; |
no outgoing calls
no test coverage detected