(&self, f: &mut fmt::Formatter<'_>)
| 87 | |
| 88 | impl Debug for CsvFormatFactory { |
| 89 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { |
| 90 | f.debug_struct("CsvFormatFactory") |
| 91 | .field("options", &self.options) |
| 92 | .finish() |
| 93 | } |
| 94 | } |
| 95 | |
| 96 | impl FileFormatFactory for CsvFormatFactory { |