Sets the CSV options
(mut self, options: CsvOptions)
| 107 | |
| 108 | /// Sets the CSV options |
| 109 | pub fn with_csv_options(mut self, options: CsvOptions) -> Self { |
| 110 | self.options = options; |
| 111 | self |
| 112 | } |
| 113 | |
| 114 | /// true if the first line of each file is a header |
| 115 | pub fn has_header(&self) -> bool { |
no outgoing calls