Enum lalrpop_util::ParseError
[−]
[src]
pub enum ParseError<L, T, E> {
InvalidToken {
location: L,
},
UnrecognizedToken {
token: Option<(L, T, L)>,
expected: Vec<String>,
},
ExtraToken {
token: (L, T, L),
},
User {
error: E,
},
}Variants
InvalidTokenGenerated by the parser when it encounters a token (or EOF) it did not expect.
Fields of InvalidToken
location: L |
UnrecognizedTokenGenerated by the parser when it encounters a token (or EOF) it did not expect.
Fields of UnrecognizedToken
token: Option<(L, T, L)> | If this is |
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. |
ExtraTokenGenerated by the parser when it encounters additional, unexpected tokens.
Fields of ExtraToken
token: (L, T, L) |
UserCustom error type.
Fields of User
error: E |
Trait Implementations
impl<L: Clone, T: Clone, E: Clone> Clone for ParseError<L, T, E>[src]
fn clone(&self) -> ParseError<L, T, E>
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more
impl<L: Debug, T: Debug, E: Debug> Debug for ParseError<L, T, E>[src]
impl<L: PartialEq, T: PartialEq, E: PartialEq> PartialEq for ParseError<L, T, E>[src]
fn eq(&self, __arg_0: &ParseError<L, T, E>) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &ParseError<L, T, E>) -> bool
This method tests for !=.
impl<L: Eq, T: Eq, E: Eq> Eq for ParseError<L, T, E>[src]
impl<L: PartialOrd, T: PartialOrd, E: PartialOrd> PartialOrd for ParseError<L, T, E>[src]
fn partial_cmp(&self, __arg_0: &ParseError<L, T, E>) -> Option<Ordering>
This method returns an ordering between self and other values if one exists. Read more
fn lt(&self, __arg_0: &ParseError<L, T, E>) -> bool
This method tests less than (for self and other) and is used by the < operator. Read more
fn le(&self, __arg_0: &ParseError<L, T, E>) -> bool
This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
fn gt(&self, __arg_0: &ParseError<L, T, E>) -> bool
This method tests greater than (for self and other) and is used by the > operator. Read more
fn ge(&self, __arg_0: &ParseError<L, T, E>) -> bool
This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
impl<L: Ord, T: Ord, E: Ord> Ord for ParseError<L, T, E>[src]
fn cmp(&self, __arg_0: &ParseError<L, T, E>) -> Ordering
This method returns an Ordering between self and other. Read more
impl<L, T, E> Display for ParseError<L, T, E> where L: Display,
T: Display,
E: Display[src]
T: Display,
E: Display
impl<L, T, E> Error for ParseError<L, T, E> where L: Debug + Display,
T: Debug + Display,
E: Debug + Display[src]
T: Debug + Display,
E: Debug + Display