pub enum Trim {
None,
Headers,
Fields,
All,
// some variants omitted
}
Expand description
The whitespace preservation behaviour when reading CSV data.
Variants
None
Preserves fields and headers. This is the default.
Headers
Trim whitespace from headers.
Fields
Trim whitespace from fields, but not headers.
All
Trim whitespace from fields and headers.
Trait Implementations
impl Copy for Trim
impl StructuralPartialEq for Trim
Auto Trait Implementations
impl RefUnwindSafe for Trim
impl Send for Trim
impl Sync for Trim
impl Unpin for Trim
impl UnwindSafe for Trim
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