[][src]Struct ihex::ReaderOptions

pub struct ReaderOptions {
    pub stop_after_first_error: bool,
    pub stop_after_eof: bool,
}

Fields

stop_after_first_error: bool

A flag indicating that iteration should stop on first failure.

stop_after_eof: bool

A flag indicating that iteration should stop on first EOF record encountered.

Trait Implementations

impl Clone for ReaderOptions[src]

impl Copy for ReaderOptions[src]

impl Debug for ReaderOptions[src]

impl Default for ReaderOptions[src]

impl Eq for ReaderOptions[src]

impl Hash for ReaderOptions[src]

impl PartialEq<ReaderOptions> for ReaderOptions[src]

impl StructuralEq for ReaderOptions[src]

impl StructuralPartialEq for ReaderOptions[src]

Auto Trait Implementations

impl RefUnwindSafe for ReaderOptions

impl Send for ReaderOptions

impl Sync for ReaderOptions

impl Unpin for ReaderOptions

impl UnwindSafe for ReaderOptions

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.