The quote character in a row. - default to '"'
(mut self, quote: u8)
| 3216 | /// The quote character in a row. |
| 3217 | /// - default to '"' |
| 3218 | pub fn with_quote(mut self, quote: u8) -> Self { |
| 3219 | self.quote = quote; |
| 3220 | self |
| 3221 | } |
| 3222 | |
| 3223 | /// The character that terminates a row. |
| 3224 | /// - default to None (CRLF) |
no outgoing calls