Method
stream_write_display
(
&self,
_t: DisplayFormatType,
f: &mut Formatter,
)
Source from the content-addressed store, hash-verified
| 228 | } |
| 229 | |
| 230 | fn stream_write_display( |
| 231 | &self, |
| 232 | _t: DisplayFormatType, |
| 233 | f: &mut Formatter, |
| 234 | ) -> std::fmt::Result { |
| 235 | f.debug_struct("StreamWrite") |
| 236 | .field("location", &self.location) |
| 237 | .field("batch_size", &self.batch_size) |
| 238 | .field("encoding", &self.encoding) |
| 239 | .field("header", &self.header) |
| 240 | .finish_non_exhaustive() |
| 241 | } |
| 242 | } |
| 243 | |
| 244 | /// The configuration for a [`StreamTable`] |
Tested by
no test coverage detected