Enum chomp::parsers::Error [] [src]

pub enum Error<I> {
    Expected(I),
    Unexpected,
    String(Vec<I>),
}

Common error for the basic Chomp parsers, verbose version.

This is a verbose version of the common error for the basic Chomp parsers. It will contain information about what a parser expected or if it encountered something unexpected (in the case of user supplied predicates, eg. satisfy).

This is coupled with the state found in the error state of the ParseResult type.

Variants

Expected(I)

Expected a specific token

Unexpected

Did not expect the token present in the input stream

String(Vec<I>)

Expected a specific string of tokens

Methods

impl<I> Error<I>
[src]

fn new() -> Self

Creates a new Unexpected error.

Should be used when the error value is not important.

Trait Implementations

impl<I: Hash> Hash for Error<I>
[src]

fn hash<__HI: Hasher>(&self, __arg_0: &mut __HI)

Feeds this value into the state given, updating the hasher as necessary.

fn hash_slice<H>(data: &[Self], state: &mut H) where H: Hasher
1.3.0

Feeds a slice of this type into the state provided.

impl<I: PartialOrd> PartialOrd for Error<I>
[src]

fn partial_cmp(&self, __arg_0: &Error<I>) -> Option<Ordering>

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

fn lt(&self, __arg_0: &Error<I>) -> bool

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

fn le(&self, __arg_0: &Error<I>) -> 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: &Error<I>) -> bool

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

fn ge(&self, __arg_0: &Error<I>) -> bool

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

impl<I: Ord> Ord for Error<I>
[src]

fn cmp(&self, __arg_0: &Error<I>) -> Ordering

This method returns an Ordering between self and other. Read more

impl<I: PartialEq> PartialEq for Error<I>
[src]

fn eq(&self, __arg_0: &Error<I>) -> bool

This method tests for self and other values to be equal, and is used by ==. Read more

fn ne(&self, __arg_0: &Error<I>) -> bool

This method tests for !=.

impl<I: Eq> Eq for Error<I>
[src]

impl<I: Debug> Debug for Error<I>
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl<I: Clone> Clone for Error<I>
[src]

fn clone(&self) -> Error<I>

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<I> Display for Error<I> where I: Debug
[src]

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

Formats the value using the given formatter.

impl<I: Any + Debug> Error for Error<I>
[src]

fn description(&self) -> &str

A short description of the error. Read more

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

The lower-level cause of this error, if any. Read more