(&self, session_id: &str)
| 213 | } |
| 214 | |
| 215 | pub fn get(&self, session_id: &str) -> RunStatus { |
| 216 | self.states.get(session_id).cloned().unwrap_or_default() |
| 217 | } |
| 218 | |
| 219 | pub fn is_busy(&self, session_id: &str) -> bool { |
| 220 | matches!( |
no outgoing calls
no test coverage detected