pub enum MissingValues {
Single(String),
PerColumn(Vec<String>),
}Expand description
Placeholder values for missing entries.
Variants§
Single(String)
Use the same placeholder for each column.
PerColumn(Vec<String>)
Provide per-column placeholders. Missing entries are extended by repeating the last value.
Trait Implementations§
Source§impl Clone for MissingValues
impl Clone for MissingValues
Source§fn clone(&self) -> MissingValues
fn clone(&self) -> MissingValues
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 MissingValues
impl Debug for MissingValues
Auto Trait Implementations§
impl Freeze for MissingValues
impl RefUnwindSafe for MissingValues
impl Send for MissingValues
impl Sync for MissingValues
impl Unpin for MissingValues
impl UnwindSafe for MissingValues
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