pub struct RowOptionSet {
pub columns: Vec<Column>,
pub decimal_comma: bool,
pub date_only: bool,
}Expand description
Row parsing options with nested column options
Fields§
§columns: Vec<Column>§decimal_comma: bool§date_only: boolImplementations§
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 · 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 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