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