(&self, f: &mut fmt::Formatter<'_>)
| 122 | |
| 123 | impl Debug for JsonFormatFactory { |
| 124 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { |
| 125 | f.debug_struct("JsonFormatFactory") |
| 126 | .field("options", &self.options) |
| 127 | .finish() |
| 128 | } |
| 129 | } |
| 130 | |
| 131 | /// JSON `FileFormat` implementation supporting both line-delimited and array formats. |