Configure has_header setting
(mut self, has_header: bool)
| 128 | |
| 129 | /// Configure has_header setting |
| 130 | pub fn has_header(mut self, has_header: bool) -> Self { |
| 131 | self.has_header = has_header; |
| 132 | self |
| 133 | } |
| 134 | |
| 135 | /// Specify comment char to use for CSV read |
| 136 | pub fn comment(mut self, comment: u8) -> Self { |
no outgoing calls