Set the regex to use for null values in the CSV reader. - default to treat empty values as null.
(mut self, null_regex: Option<String>)
| 233 | /// Set the regex to use for null values in the CSV reader. |
| 234 | /// - default to treat empty values as null. |
| 235 | pub fn with_null_regex(mut self, null_regex: Option<String>) -> Self { |
| 236 | self.options.null_regex = null_regex; |
| 237 | self |
| 238 | } |
| 239 | |
| 240 | /// Returns `Some(true)` if the first line is a header, `Some(false)` if |
| 241 | /// it is not, and `None` if it is not specified. |
no outgoing calls
no test coverage detected