Specify a custom quote character, defaults to double quote `'"'`
(mut self, quote: u8)
| 305 | |
| 306 | /// Specify a custom quote character, defaults to double quote `'"'` |
| 307 | pub fn with_quote(mut self, quote: u8) -> Self { |
| 308 | self.quote = Some(quote); |
| 309 | self |
| 310 | } |
| 311 | |
| 312 | /// Specify a custom terminator character, defaults to CRLF |
| 313 | pub fn with_terminator(mut self, terminator: u8) -> Self { |
no outgoing calls