Overrides the [Format] of this [ReaderBuilder]
(mut self, format: Format)
| 1156 | |
| 1157 | /// Overrides the [Format] of this [ReaderBuilder] |
| 1158 | pub fn with_format(mut self, format: Format) -> Self { |
| 1159 | self.format = format; |
| 1160 | self |
| 1161 | } |
| 1162 | |
| 1163 | /// Set the CSV file's column delimiter as a byte character |
| 1164 | pub fn with_delimiter(mut self, delimiter: u8) -> Self { |
no outgoing calls