[][src]Enum hauptbuch_parser::line_processor::LineProcessorError

pub enum LineProcessorError<E> {
    ParseError {
        line_no: usize,
        error: LineParserError,
    },
    VisitorError {
        line_no: usize,
        error: E,
    },
    IoError(Error),
}

Variants

ParseError

Fields of ParseError

line_no: usizeerror: LineParserError
VisitorError

Fields of VisitorError

line_no: usizeerror: E
IoError(Error)

Trait Implementations

impl<E: Debug> Debug for LineProcessorError<E>[src]

Auto Trait Implementations

impl<E> Send for LineProcessorError<E> where
    E: Send

impl<E> Sync for LineProcessorError<E> where
    E: Sync

Blanket Implementations

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

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

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.

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

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

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