pub struct LoaderOptions {
pub has_header: bool,
pub delimiter: char,
pub quote_marker: Option<char>,
}Expand description
Options used to fine tune the file loading
Fields§
§has_header: boolTrue if there are headers present in the file
delimiter: charThe delimiter character
quote_marker: Option<char>The quote character
Trait Implementations§
Source§impl Default for LoaderOptions
impl Default for LoaderOptions
Source§fn default() -> LoaderOptions
fn default() -> LoaderOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for LoaderOptions
impl RefUnwindSafe for LoaderOptions
impl Send for LoaderOptions
impl Sync for LoaderOptions
impl Unpin for LoaderOptions
impl UnwindSafe for LoaderOptions
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