(&self, f: &mut fmt::Formatter<'_>)
| 391 | |
| 392 | impl fmt::Debug for AgentRegistry { |
| 393 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { |
| 394 | f.debug_struct("AgentRegistry") |
| 395 | .field("agents", &self.list()) |
| 396 | .finish() |
| 397 | } |
| 398 | } |
| 399 | |
| 400 | // Tests |