[][src]Struct lalrpop_util::ErrorRecovery

pub struct ErrorRecovery<L, T, E> {
    pub error: ParseError<L, T, E>,
    pub dropped_tokens: Vec<(L, T, L)>,
}

Fields

error: ParseError<L, T, E>dropped_tokens: Vec<(L, T, L)>

Trait Implementations

impl<L: Eq, T: Eq, E: Eq> Eq for ErrorRecovery<L, T, E>
[src]

impl<L: PartialOrd, T: PartialOrd, E: PartialOrd> PartialOrd<ErrorRecovery<L, T, E>> for ErrorRecovery<L, T, E>
[src]

impl<L: PartialEq, T: PartialEq, E: PartialEq> PartialEq<ErrorRecovery<L, T, E>> for ErrorRecovery<L, T, E>
[src]

impl<L: Clone, T: Clone, E: Clone> Clone for ErrorRecovery<L, T, E>
[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl<L: Ord, T: Ord, E: Ord> Ord for ErrorRecovery<L, T, E>
[src]

fn max(self, other: Self) -> Self
1.21.0
[src]

Compares and returns the maximum of two values. Read more

fn min(self, other: Self) -> Self
1.21.0
[src]

Compares and returns the minimum of two values. Read more

impl<L: Debug, T: Debug, E: Debug> Debug for ErrorRecovery<L, T, E>
[src]

Auto Trait Implementations

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

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

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]