Enum csv_core::QuoteStyle
source · [−]pub enum QuoteStyle {
Always,
Necessary,
NonNumeric,
Never,
// some variants omitted
}
Expand description
The quoting style to use when writing CSV data.
Variants
Always
This puts quotes around every field. Always.
Necessary
This puts quotes around fields only when necessary.
They are necessary when fields contain a quote, delimiter or record terminator. Quotes are also necessary when writing an empty record (which is indistinguishable from a record with one empty field).
This is the default.
NonNumeric
This puts quotes around all fields that are non-numeric. Namely, when writing a field that does not parse as a valid float or integer, then quotes will be used even if they aren’t strictly necessary.
Never
This never writes quotes, even if it would produce invalid CSV data.
Trait Implementations
sourceimpl Clone for QuoteStyle
impl Clone for QuoteStyle
sourcefn clone(&self) -> QuoteStyle
fn clone(&self) -> QuoteStyle
Returns a copy of the value. Read more
1.0.0 · sourceconst fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for QuoteStyle
impl Debug for QuoteStyle
sourceimpl Default for QuoteStyle
impl Default for QuoteStyle
sourcefn default() -> QuoteStyle
fn default() -> QuoteStyle
Returns the “default value” for a type. Read more
impl Copy for QuoteStyle
Auto Trait Implementations
impl RefUnwindSafe for QuoteStyle
impl Send for QuoteStyle
impl Sync for QuoteStyle
impl Unpin for QuoteStyle
impl UnwindSafe for QuoteStyle
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more