Configure the null parsing regex.
(mut self, null_regex: Option<String>)
| 226 | |
| 227 | /// Configure the null parsing regex. |
| 228 | pub fn null_regex(mut self, null_regex: Option<String>) -> Self { |
| 229 | self.null_regex = null_regex; |
| 230 | self |
| 231 | } |
| 232 | |
| 233 | /// Configure whether to allow truncated rows when parsing. |
| 234 | /// By default this is set to false and will error if the CSV rows have different lengths |
no outgoing calls
no test coverage detected