Specify whether the CSV file has a header, defaults to `false` When `true`, the first row of the CSV file is treated as a header row
(mut self, has_header: bool)
| 287 | /// |
| 288 | /// When `true`, the first row of the CSV file is treated as a header row |
| 289 | pub fn with_header(mut self, has_header: bool) -> Self { |
| 290 | self.header = has_header; |
| 291 | self |
| 292 | } |
| 293 | |
| 294 | /// Specify a custom delimiter character, defaults to comma `','` |
| 295 | pub fn with_delimiter(mut self, delimiter: u8) -> Self { |
no outgoing calls