The escape character in a row. - default is None
(mut self, escape: Option<u8>)
| 3230 | /// The escape character in a row. |
| 3231 | /// - default is None |
| 3232 | pub fn with_escape(mut self, escape: Option<u8>) -> Self { |
| 3233 | self.escape = escape; |
| 3234 | self |
| 3235 | } |
| 3236 | |
| 3237 | /// Set true to indicate that the CSV quotes should be doubled. |
| 3238 | /// - default to true |
no outgoing calls