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§
source§impl PartialEq<Trim> for Trim
impl PartialEq<Trim> for Trim
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§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more