(&self, f: &mut std::fmt::Formatter<'_>)
| 68 | |
| 69 | impl std::fmt::Debug for MultiStream { |
| 70 | fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { |
| 71 | f.debug_struct("MultiStream") |
| 72 | .field("streams", &self.streams) |
| 73 | .field("last_read", &self.last_read) |
| 74 | .field("tracer", &self.tracer.is_some()) |
| 75 | .finish() |
| 76 | } |
| 77 | } |
| 78 | |
| 79 | impl Clone for MultiStream { |
nothing calls this directly
no outgoing calls
no test coverage detected