[][src]Enum pest::error::ErrorVariant

pub enum ErrorVariant<R> {
    ParsingError {
        positives: Vec<R>,
        negatives: Vec<R>,
    },
    CustomError {
        message: String,
    },
}

Different kinds of parsing errors.

Variants

ParsingError

Generated parsing error with expected and unexpected Rules

Fields of ParsingError

positives: Vec<R>

Positive attempts

negatives: Vec<R>

Negative attempts

CustomError

Custom error with a message

Fields of CustomError

message: String

Short explanation

Trait Implementations

impl<R: Clone> Clone for ErrorVariant<R>[src]

impl<R: Debug> Debug for ErrorVariant<R>[src]

impl<R: Eq> Eq for ErrorVariant<R>[src]

impl<R: Hash> Hash for ErrorVariant<R>[src]

impl<R: PartialEq> PartialEq<ErrorVariant<R>> for ErrorVariant<R>[src]

impl<R> StructuralEq for ErrorVariant<R>[src]

impl<R> StructuralPartialEq for ErrorVariant<R>[src]

Auto Trait Implementations

impl<R> RefUnwindSafe for ErrorVariant<R> where
    R: RefUnwindSafe

impl<R> Send for ErrorVariant<R> where
    R: Send

impl<R> Sync for ErrorVariant<R> where
    R: Sync

impl<R> Unpin for ErrorVariant<R> where
    R: Unpin

impl<R> UnwindSafe for ErrorVariant<R> where
    R: 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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.