pub enum ParseError<L, T, E> {
    InvalidToken {
        location: L,
    },
    UnrecognizedEOF {
        location: L,
        expected: Vec<String>,
    },
    UnrecognizedToken {
        token: (L, T, L),
        expected: Vec<String>,
    },
    ExtraToken {
        token: (L, T, L),
    },
    User {
        error: E,
    },
}

Variants§

§

InvalidToken

Fields

§location: L

Generated by the parser when it encounters a token (or EOF) it did not expect.

§

UnrecognizedEOF

Fields

§location: L

The end of the final token

§expected: Vec<String>

The set of expected tokens: these names are taken from the grammar and hence may not necessarily be suitable for presenting to the user.

Generated by the parser when it encounters an EOF it did not expect.

§

UnrecognizedToken

Fields

§token: (L, T, L)

The unexpected token of type T with a span given by the two L values.

§expected: Vec<String>

The set of expected tokens: these names are taken from the grammar and hence may not necessarily be suitable for presenting to the user.

Generated by the parser when it encounters a token it did not expect.

§

ExtraToken

Fields

Generated by the parser when it encounters additional, unexpected tokens.

§

User

Fields

§error: E

Custom error type.

Implementations§

source§

impl<L, T, E> ParseError<L, T, E>

source

pub fn map_location<LL>(self, op: impl FnMut(L) -> LL) -> ParseError<LL, T, E>

source

pub fn map_token<TT>(self, op: impl FnOnce(T) -> TT) -> ParseError<L, TT, E>

source

pub fn map_error<EE>(self, op: impl FnOnce(E) -> EE) -> ParseError<L, T, EE>

Trait Implementations§

source§

impl<L: Clone, T: Clone, E: Clone> Clone for ParseError<L, T, E>

source§

fn clone(&self) -> ParseError<L, T, E>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<L: Debug, T: Debug, E: Debug> Debug for ParseError<L, T, E>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<L, T, E> Display for ParseError<L, T, E>where L: Display, T: Display, E: Display,

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<L, T, E> Error for ParseError<L, T, E>where L: Debug + Display, T: Debug + Display, E: Debug + Display,

source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.30.0 · source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, demand: &mut Demand<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl<L, T, E> From<E> for ParseError<L, T, E>

source§

fn from(error: E) -> Self

Converts to this type from the input type.
source§

impl<L: Ord, T: Ord, E: Ord> Ord for ParseError<L, T, E>

source§

fn cmp(&self, other: &ParseError<L, T, E>) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Selfwhere Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Selfwhere Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Selfwhere Self: Sized + PartialOrd<Self>,

Restrict a value to a certain interval. Read more
source§

impl<L: PartialEq, T: PartialEq, E: PartialEq> PartialEq<ParseError<L, T, E>> for ParseError<L, T, E>

source§

fn eq(&self, other: &ParseError<L, T, E>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<L: PartialOrd, T: PartialOrd, E: PartialOrd> PartialOrd<ParseError<L, T, E>> for ParseError<L, T, E>

source§

fn partial_cmp(&self, other: &ParseError<L, T, E>) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

fn lt(&self, other: &Rhs) -> bool

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

fn le(&self, other: &Rhs) -> bool

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

fn gt(&self, other: &Rhs) -> bool

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

fn ge(&self, other: &Rhs) -> bool

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl<L: Eq, T: Eq, E: Eq> Eq for ParseError<L, T, E>

source§

impl<L, T, E> StructuralEq for ParseError<L, T, E>

source§

impl<L, T, E> StructuralPartialEq for ParseError<L, T, E>

Auto Trait Implementations§

§

impl<L, T, E> RefUnwindSafe for ParseError<L, T, E>where E: RefUnwindSafe, L: RefUnwindSafe, T: RefUnwindSafe,

§

impl<L, T, E> Send for ParseError<L, T, E>where E: Send, L: Send, T: Send,

§

impl<L, T, E> Sync for ParseError<L, T, E>where E: Sync, L: Sync, T: Sync,

§

impl<L, T, E> Unpin for ParseError<L, T, E>where E: Unpin, L: Unpin, T: Unpin,

§

impl<L, T, E> UnwindSafe for ParseError<L, T, E>where E: UnwindSafe, L: UnwindSafe, T: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<!> for T

source§

fn from(t: !) -> T

Converts to this type from the input type.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<E> Provider for Ewhere E: Error + ?Sized,

source§

fn provide<'a>(&'a self, demand: &mut Demand<'a>)

🔬This is a nightly-only experimental API. (provide_any)
Data providers should implement this method to provide all values they are able to provide by using demand. Read more
source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for Twhere T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.