(&self)
| 51 | } |
| 52 | |
| 53 | fn should_abort(&self) -> bool { |
| 54 | self.abort_flag.load(Ordering::Relaxed) |
| 55 | } |
| 56 | |
| 57 | fn capture_root_result(&self, result: ChildRef) { |
| 58 | let mut guard = self.root_result.lock().unwrap_or_else(|p| p.into_inner()); |
no test coverage detected