(&self, f: &mut fmt::Formatter<'_>)
| 420 | |
| 421 | impl fmt::Debug for AgentRegistry { |
| 422 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { |
| 423 | f.debug_struct("AgentRegistry") |
| 424 | .field("agents", &self.list()) |
| 425 | .finish() |
| 426 | } |
| 427 | } |
| 428 | |
| 429 | // Tests |