(&self)
| 77 | + 'static, |
| 78 | { |
| 79 | fn lock_live_state(&self) -> StdMutexGuard<'_, Option<LivePendingState>> { |
| 80 | self.live_state.lock().unwrap_or_else(|poisoned| poisoned.into_inner()) |
| 81 | } |
| 82 | |
| 83 | fn clear_live_state(&self) { |
| 84 | *self.lock_live_state() = None; |
no test coverage detected