(&mut self, id: &str)
| 1276 | } |
| 1277 | |
| 1278 | pub fn remove(&mut self, id: &str) -> Option<VmState> { |
| 1279 | self.vms.remove(id) |
| 1280 | } |
| 1281 | |
| 1282 | pub fn iter_vms(&self) -> impl Iterator<Item = &VmState> { |
| 1283 | self.vms.values() |
no outgoing calls
no test coverage detected