(&self, f: &mut fmt::Formatter<'_>)
| 452 | |
| 453 | impl fmt::Debug for AgentRegistry { |
| 454 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { |
| 455 | f.debug_struct("AgentRegistry") |
| 456 | .field("agents", &self.list()) |
| 457 | .finish() |
| 458 | } |
| 459 | } |
| 460 | |
| 461 | // Tests |