Set true to indicate that the first line is a header. - default to true
(mut self, has_header: bool)
| 221 | /// Set true to indicate that the first line is a header. |
| 222 | /// - default to true |
| 223 | pub fn with_has_header(mut self, has_header: bool) -> Self { |
| 224 | self.options.has_header = Some(has_header); |
| 225 | self |
| 226 | } |
| 227 | |
| 228 | pub fn with_truncated_rows(mut self, truncated_rows: bool) -> Self { |
| 229 | self.options.truncated_rows = Some(truncated_rows); |
no outgoing calls
no test coverage detected