(&self)
| 111 | } |
| 112 | |
| 113 | pub(super) fn clear_runtime_actions(&self) { |
| 114 | write_or_recover(&self.active_tools).clear(); |
| 115 | write_or_recover(&self.pending_confirmations).clear(); |
| 116 | write_or_recover(&self.external_tasks).clear(); |
| 117 | } |
| 118 | |
| 119 | pub(super) fn active_tools(&self) -> usize { |
| 120 | read_or_recover(&self.active_tools).len() |
no test coverage detected