Specify whether the file has a header (only applicable for [`StreamEncoding::Csv`])
(mut self, header: bool)
| 165 | |
| 166 | /// Specify whether the file has a header (only applicable for [`StreamEncoding::Csv`]) |
| 167 | pub fn with_header(mut self, header: bool) -> Self { |
| 168 | self.header = header; |
| 169 | self |
| 170 | } |
| 171 | |
| 172 | /// Specify an encoding for the stream |
| 173 | pub fn with_encoding(mut self, encoding: StreamEncoding) -> Self { |
no outgoing calls