You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
let mut writer = csv::WriterBuilder::new()
.quote_style(csv::QuoteStyle::Never)
.delimiter(b',')
.from_writer(out);
Why is QuoteStyle::Never there? Items containing commas break the writer by making CSV unreadable. Any chance you could expose some interface to override that?
The text was updated successfully, but these errors were encountered:
I just found the following in the code:
Why is QuoteStyle::Never there? Items containing commas break the writer by making CSV unreadable. Any chance you could expose some interface to override that?
The text was updated successfully, but these errors were encountered: