(mut self, truncated_rows: bool)
| 226 | } |
| 227 | |
| 228 | pub fn with_truncated_rows(mut self, truncated_rows: bool) -> Self { |
| 229 | self.options.truncated_rows = Some(truncated_rows); |
| 230 | self |
| 231 | } |
| 232 | |
| 233 | /// Set the regex to use for null values in the CSV reader. |
| 234 | /// - default to treat empty values as null. |
no outgoing calls
no test coverage detected