pub struct ReaderOptions {
pub stop_after_first_error: bool,
pub stop_after_eof: bool,
}Fields§
§stop_after_first_error: boolA flag indicating that iteration should stop on first failure.
stop_after_eof: boolA flag indicating that iteration should stop on first EOF record encountered.
Trait Implementations§
Source§impl Clone for ReaderOptions
impl Clone for ReaderOptions
Source§fn clone(&self) -> ReaderOptions
fn clone(&self) -> ReaderOptions
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 ReaderOptions
impl Debug for ReaderOptions
Source§impl Default for ReaderOptions
impl Default for ReaderOptions
Source§impl Hash for ReaderOptions
impl Hash for ReaderOptions
Source§impl PartialEq for ReaderOptions
impl PartialEq for ReaderOptions
impl Copy for ReaderOptions
impl Eq for ReaderOptions
impl StructuralPartialEq for ReaderOptions
Auto Trait Implementations§
impl Freeze for ReaderOptions
impl RefUnwindSafe for ReaderOptions
impl Send for ReaderOptions
impl Sync for ReaderOptions
impl Unpin for ReaderOptions
impl UnsafeUnpin for ReaderOptions
impl UnwindSafe for ReaderOptions
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