[][src]Struct hime_redist::errors::ParseErrorEndOfInput

pub struct ParseErrorEndOfInput { /* fields omitted */ }

Represents the unexpected of the input text while more characters were expected

Implementations

impl ParseErrorEndOfInput[src]

pub fn new(position: TextPosition) -> ParseErrorEndOfInput[src]

Creates a new error

Trait Implementations

impl Clone for ParseErrorEndOfInput[src]

impl Copy for ParseErrorEndOfInput[src]

impl ParseErrorDataTrait for ParseErrorEndOfInput[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.