[][src]Struct hime_redist::errors::ParseErrorUnexpectedToken

pub struct ParseErrorUnexpectedToken { /* fields omitted */ }

Represents an unexpected token error in a parser

Implementations

impl ParseErrorUnexpectedToken[src]

pub fn new(
    position: TextPosition,
    length: usize,
    value: String,
    terminal: Symbol,
    expected: Vec<Symbol>
) -> ParseErrorUnexpectedToken
[src]

Initializes this error

Trait Implementations

impl Clone for ParseErrorUnexpectedToken[src]

impl ParseErrorDataTrait for ParseErrorUnexpectedToken[src]

fn get_position(&self) -> TextPosition[src]

Gets the error's position in the input

fn get_length(&self) -> usize[src]

Gets the error's length in the input (in number of characters)

fn get_message(&self) -> String[src]

Gets the error's message

Auto Trait Implementations

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.