(&mut self, id: &str)
| 1272 | } |
| 1273 | |
| 1274 | pub fn get_mut(&mut self, id: &str) -> Option<&mut VmState> { |
| 1275 | self.vms.get_mut(id) |
| 1276 | } |
| 1277 | |
| 1278 | pub fn remove(&mut self, id: &str) -> Option<VmState> { |
| 1279 | self.vms.remove(id) |
no outgoing calls
no test coverage detected