(&mut self, session_id: &str, status: RunStatus)
| 209 | } |
| 210 | |
| 211 | pub fn set(&mut self, session_id: &str, status: RunStatus) { |
| 212 | self.states.insert(session_id.to_string(), status); |
| 213 | } |
| 214 | |
| 215 | pub fn get(&self, session_id: &str) -> RunStatus { |
| 216 | self.states.get(session_id).cloned().unwrap_or_default() |
no outgoing calls
no test coverage detected