[][src]Struct lrpar::ParseError

pub struct ParseError<StorageT: Hash> { /* fields omitted */ }

Records a single parse error.

Implementations

impl<StorageT: Hash + PrimInt + Unsigned> ParseError<StorageT>[src]

pub fn stidx(&self) -> StIdx[src]

Return the state table index where this error was detected.

pub fn lexeme(&self) -> &Lexeme<StorageT>[src]

Return the lexeme where this error was detected.

pub fn repairs(&self) -> &Vec<Vec<ParseRepair<StorageT>>>[src]

Return the repairs found that would fix this error. Note that there are infinite number of possible repairs for any error, so this is by definition a (finite) subset.

Trait Implementations

impl<StorageT: Clone + Hash> Clone for ParseError<StorageT>[src]

impl<StorageT: Debug + Hash> Debug for ParseError<StorageT>[src]

impl<StorageT: Debug + Hash> Display for ParseError<StorageT>[src]

impl<StorageT: Debug + Hash> Error for ParseError<StorageT>[src]

impl<StorageT: Hash> From<ParseError<StorageT>> for LexParseError<StorageT>[src]

impl<StorageT: PartialEq + Hash> PartialEq<ParseError<StorageT>> for ParseError<StorageT>[src]

impl<StorageT: Hash> StructuralPartialEq for ParseError<StorageT>[src]

Auto Trait Implementations

impl<StorageT> RefUnwindSafe for ParseError<StorageT> where
    StorageT: RefUnwindSafe

impl<StorageT> Send for ParseError<StorageT> where
    StorageT: Send

impl<StorageT> Sync for ParseError<StorageT> where
    StorageT: Sync

impl<StorageT> Unpin for ParseError<StorageT> where
    StorageT: Unpin

impl<StorageT> UnwindSafe for ParseError<StorageT> where
    StorageT: 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> ToString for T where
    T: Display + ?Sized
[src]

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.

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

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