pub enum RowSeparator {
LF,
CR,
CRLF,
}Expand description
Row separator options for CSV import.
Variants§
LF
Line feed (Unix-style)
CR
Carriage return (old Mac-style)
CRLF
Carriage return + line feed (Windows-style)
Implementations§
Trait Implementations§
Source§impl Clone for RowSeparator
impl Clone for RowSeparator
Source§fn clone(&self) -> RowSeparator
fn clone(&self) -> RowSeparator
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RowSeparator
impl Debug for RowSeparator
Source§impl Default for RowSeparator
impl Default for RowSeparator
Source§fn default() -> RowSeparator
fn default() -> RowSeparator
Returns the “default value” for a type. Read more
Source§impl PartialEq for RowSeparator
impl PartialEq for RowSeparator
impl Copy for RowSeparator
impl Eq for RowSeparator
impl StructuralPartialEq for RowSeparator
Auto Trait Implementations§
impl Freeze for RowSeparator
impl RefUnwindSafe for RowSeparator
impl Send for RowSeparator
impl Sync for RowSeparator
impl Unpin for RowSeparator
impl UnwindSafe for RowSeparator
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.