Set true to indicate that the CSV quotes should be doubled. - default to true
(mut self, double_quote: bool)
| 3237 | /// Set true to indicate that the CSV quotes should be doubled. |
| 3238 | /// - default to true |
| 3239 | pub fn with_double_quote(mut self, double_quote: bool) -> Self { |
| 3240 | self.double_quote = Some(double_quote); |
| 3241 | self |
| 3242 | } |
| 3243 | |
| 3244 | /// Set the quote style for CSV writing. |
| 3245 | pub fn with_quote_style(mut self, quote_style: CsvQuoteStyle) -> Self { |
no outgoing calls
no test coverage detected