[][src]Enum lualexer::LexerErrorType

pub enum LexerErrorType {
    MalformedNumber,
    UnfinishedString,
    UnexpectedSymbol,
}

Errors that can happen while tokenizing some input.

Variants

MalformedNumber

While parsing something that initially appeared as a number, some invalid character screw it up.

UnfinishedString

A string was begun (from a ', " or opening double brackets [=*[) but never closed. Quotes are generally expected to at the end of line, but the balanced bracket notation is used commonly used for multiline strings.

UnexpectedSymbol

The lexer found a symbol that was not supposed to be there.

Trait Implementations

impl Clone for LexerErrorType[src]

impl Debug for LexerErrorType[src]

impl Eq for LexerErrorType[src]

impl PartialEq<LexerErrorType> for LexerErrorType[src]

impl StructuralEq for LexerErrorType[src]

impl StructuralPartialEq for LexerErrorType[src]

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.