pub struct RowOptionSet {
pub columns: Vec<Column>,
pub decimal_comma: bool,
pub datetime_mode: DateTimeMode,
}Expand description
Row parsing options with nested column options
Fields§
§columns: Vec<Column>§decimal_comma: bool§datetime_mode: DateTimeModeRow-wide default rendering mode for datetime cells (genuine Data::DateTime/
Data::DateTimeIso cells, and any string/CSV cell under an explicit
Format::Date/Format::Time/Format::Hm/Format::DateTime override). A column’s
own Format override, or its own datetime_mode on a Format::Auto column, takes
precedence over this row-wide default; see Column::datetime_mode.
Implementations§
Source§impl RowOptionSet
impl RowOptionSet
Trait Implementations§
Source§impl Clone for RowOptionSet
impl Clone for RowOptionSet
Source§fn clone(&self) -> RowOptionSet
fn clone(&self) -> RowOptionSet
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RowOptionSet
impl Debug for RowOptionSet
Source§impl Default for RowOptionSet
impl Default for RowOptionSet
Source§fn default() -> RowOptionSet
fn default() -> RowOptionSet
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for RowOptionSet
impl RefUnwindSafe for RowOptionSet
impl Send for RowOptionSet
impl Sync for RowOptionSet
impl Unpin for RowOptionSet
impl UnsafeUnpin for RowOptionSet
impl UnwindSafe for RowOptionSet
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