(&mut self, name: &str)
| 608 | } |
| 609 | |
| 610 | pub fn get_mut(&mut self, name: &str) -> Option<&mut AgentInfo> { |
| 611 | self.agents.get_mut(name) |
| 612 | } |
| 613 | |
| 614 | pub fn register(&mut self, agent: AgentInfo) { |
| 615 | self.agents.insert(agent.name.clone(), agent); |
no outgoing calls
no test coverage detected