(&self, f: &mut std::fmt::Formatter<'_>)
| 55 | |
| 56 | impl std::fmt::Debug for AgentEventStream { |
| 57 | fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { |
| 58 | f.debug_struct("AgentEventStream") |
| 59 | .field("len", &self.len()) |
| 60 | .finish() |
| 61 | } |
| 62 | } |
| 63 | |
| 64 | impl AgentEventStream { |