Enum commands::tokenizer::TokenizerError [] [src]

pub enum TokenizerError {
    CharacterNotAllowedHere(usize),
    SpecialNotYetImplemented(usize),
    EscapingBackslashAtEndOfInput,
    UnclosedDoubleQuoteAtEndOfInput,
    UnclosedSingleQuoteAtEndOfInput,
}

Errors

Variants

Character not allowed here

Special not yet implemented

Escaping backslash at end of input

Unclosed double quote at end of input

Unclosed single quote at end of input

Trait Implementations

impl Clone for TokenizerError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for TokenizerError
[src]

Formats the value using the given formatter.

impl Error for TokenizerError
[src]

A short description of the error. Read more

The lower-level cause of this error, if any. Read more

impl Display for TokenizerError
[src]

Formats the value using the given formatter. Read more