pub struct ReaderOption {
pub trim: bool,
pub read_header: bool,
pub consume_dquote: bool,
pub custom_header: Vec<String>,
pub delimiter: Option<char>,
pub line_delimiter: Option<char>,
pub ignore_empty_row: bool,
pub allow_invalid_string: bool,
}Expand description
Reader behaviour related options
Fields§
§trim: bool§read_header: bool§consume_dquote: bool§custom_header: Vec<String>§delimiter: Option<char>§line_delimiter: Option<char>§ignore_empty_row: bool§allow_invalid_string: boolImplementations§
Source§impl ReaderOption
impl ReaderOption
Sourcepub fn new() -> ReaderOption
pub fn new() -> ReaderOption
Constructor
Trait Implementations§
Source§impl Default for ReaderOption
impl Default for ReaderOption
Source§fn default() -> ReaderOption
fn default() -> ReaderOption
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ReaderOption
impl RefUnwindSafe for ReaderOption
impl Send for ReaderOption
impl Sync for ReaderOption
impl Unpin for ReaderOption
impl UnwindSafe for ReaderOption
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