(&self, f: &mut std::fmt::Formatter<'_>)
| 232 | |
| 233 | impl Debug for FlightDataDecoder { |
| 234 | fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { |
| 235 | f.debug_struct("FlightDataDecoder") |
| 236 | .field("response", &"<stream>") |
| 237 | .field("state", &self.state) |
| 238 | .field("done", &self.done) |
| 239 | .finish() |
| 240 | } |
| 241 | } |
| 242 | |
| 243 | impl FlightDataDecoder { |