pub struct GenericCsvOptions {
pub time_col: Option<String>,
pub value_col: Option<String>,
pub channel_col: Option<String>,
pub pre_residualized: bool,
}Expand description
Options for the generic CSV loader. Empty for “auto-detect everything”.
Fields§
§time_col: Option<String>§value_col: Option<String>§channel_col: Option<String>§pre_residualized: boolTrait Implementations§
Source§impl Clone for GenericCsvOptions
impl Clone for GenericCsvOptions
Source§fn clone(&self) -> GenericCsvOptions
fn clone(&self) -> GenericCsvOptions
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 GenericCsvOptions
impl Debug for GenericCsvOptions
Source§impl Default for GenericCsvOptions
impl Default for GenericCsvOptions
Source§fn default() -> GenericCsvOptions
fn default() -> GenericCsvOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GenericCsvOptions
impl RefUnwindSafe for GenericCsvOptions
impl Send for GenericCsvOptions
impl Sync for GenericCsvOptions
impl Unpin for GenericCsvOptions
impl UnsafeUnpin for GenericCsvOptions
impl UnwindSafe for GenericCsvOptions
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