Set the quote style for CSV writing.
(mut self, quote_style: CsvQuoteStyle)
| 3243 | |
| 3244 | /// Set the quote style for CSV writing. |
| 3245 | pub fn with_quote_style(mut self, quote_style: CsvQuoteStyle) -> Self { |
| 3246 | self.quote_style = quote_style; |
| 3247 | self |
| 3248 | } |
| 3249 | |
| 3250 | /// Set whether to ignore leading whitespace in string values when writing CSV. |
| 3251 | pub fn with_ignore_leading_whitespace( |
no outgoing calls
no test coverage detected