pub enum DelimitMode {
Auto,
Always,
Never,
}Expand description
Delimit mode for CSV export.
Variants§
Auto
Automatically detect when delimiters are needed
Always
Always use delimiters
Never
Never use delimiters
Implementations§
Trait Implementations§
Source§impl Clone for DelimitMode
impl Clone for DelimitMode
Source§fn clone(&self) -> DelimitMode
fn clone(&self) -> DelimitMode
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 DelimitMode
impl Debug for DelimitMode
Source§impl Default for DelimitMode
impl Default for DelimitMode
Source§fn default() -> DelimitMode
fn default() -> DelimitMode
Returns the “default value” for a type. Read more
Source§impl PartialEq for DelimitMode
impl PartialEq for DelimitMode
impl Copy for DelimitMode
impl Eq for DelimitMode
impl StructuralPartialEq for DelimitMode
Auto Trait Implementations§
impl Freeze for DelimitMode
impl RefUnwindSafe for DelimitMode
impl Send for DelimitMode
impl Sync for DelimitMode
impl Unpin for DelimitMode
impl UnsafeUnpin for DelimitMode
impl UnwindSafe for DelimitMode
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.