Enum lang_util::error::ParseErrorKind[][src]

pub enum ParseErrorKind<E: LexicalError> {
    InvalidToken,
    UnrecognizedEof {
        expected: Vec<String>,
    },
    UnrecognizedToken {
        token: String,
        expected: Vec<String>,
    },
    ExtraToken {
        token: String,
    },
    LexicalError {
        error: E,
    },
}

Parsing error kind

Variants

InvalidToken

An invalid token was encountered during lexical analysis

UnrecognizedEof

Unexpected end of file

Fields of UnrecognizedEof

expected: Vec<String>

List of expected token names

UnrecognizedToken

Unexpected token

Fields of UnrecognizedToken

token: String

The unexpected token

expected: Vec<String>

List of expected token names

ExtraToken

Extra token after input

Fields of ExtraToken

token: String

The extra token

LexicalError

Lexical analysis error

Fields of LexicalError

error: E

Lexical error

Trait Implementations

impl<E: Clone + LexicalError> Clone for ParseErrorKind<E>[src]

impl<E: Debug + LexicalError> Debug for ParseErrorKind<E>[src]

impl<E: LexicalError> Display for ParseErrorKind<E>[src]

impl<E: PartialEq + LexicalError> PartialEq<ParseErrorKind<E>> for ParseErrorKind<E>[src]

impl<E: LexicalError> StructuralPartialEq for ParseErrorKind<E>[src]

Auto Trait Implementations

impl<E> RefUnwindSafe for ParseErrorKind<E> where
    E: RefUnwindSafe

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

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

impl<E> Unpin for ParseErrorKind<E> where
    E: Unpin

impl<E> UnwindSafe for ParseErrorKind<E> where
    E: UnwindSafe

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> IntoResult<T> for T[src]

type Err = Infallible

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 = 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.