[][src]Enum sise::ReadUtilError

pub enum ReadUtilError<E, P> {
    ReaderError(E),
    ExpectedAtom {
        pos: P,
    },
    ExpectedListBeginning {
        pos: P,
    },
    ExpectedListEnding {
        pos: P,
    },
    ExpectedNodeInList {
        pos: P,
    },
    InvalidValue {
        value_type: String,
        pos: P,
    },
}

Variants

ReaderError(E)
ExpectedAtom

Fields of ExpectedAtom

pos: P
ExpectedListBeginning

Fields of ExpectedListBeginning

pos: P
ExpectedListEnding

Fields of ExpectedListEnding

pos: P
ExpectedNodeInList

Fields of ExpectedNodeInList

pos: P
InvalidValue

Fields of InvalidValue

value_type: Stringpos: P

Trait Implementations

impl<E, P> From<E> for ReadUtilError<E, P>[src]

impl<E: Clone, P: Clone> Clone for ReadUtilError<E, P>[src]

impl<E: PartialEq, P: PartialEq> PartialEq<ReadUtilError<E, P>> for ReadUtilError<E, P>[src]

impl<E: Debug, P: Debug> Debug for ReadUtilError<E, P>[src]

impl<E: Display> Display for ReadUtilError<E, ()>[src]

impl<E: Display> Display for ReadUtilError<E, Pos>[src]

impl<E, P> StructuralPartialEq for ReadUtilError<E, P>[src]

impl<E: Error> Error for ReadUtilError<E, ()>[src]

impl<E: Error> Error for ReadUtilError<E, Pos>[src]

Auto Trait Implementations

impl<E, P> Send for ReadUtilError<E, P> where
    E: Send,
    P: Send

impl<E, P> Sync for ReadUtilError<E, P> where
    E: Sync,
    P: Sync

impl<E, P> Unpin for ReadUtilError<E, P> where
    E: Unpin,
    P: Unpin

impl<E, P> UnwindSafe for ReadUtilError<E, P> where
    E: UnwindSafe,
    P: UnwindSafe

impl<E, P> RefUnwindSafe for ReadUtilError<E, P> where
    E: RefUnwindSafe,
    P: RefUnwindSafe

Blanket Implementations

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

impl<T> From<!> 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> ToString for T where
    T: Display + ?Sized
[src]

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

type Error = !

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]