Enum juniper::parser::LexerError [] [src]

pub enum LexerError {
    UnknownCharacter(char),
    UnexpectedCharacter(char),
    UnterminatedString,
    UnknownCharacterInString(char),
    UnknownEscapeSequence(String),
    UnexpectedEndOfFile,
    InvalidNumber,
}

Error when tokenizing the input source

Variants

An unknown character was found

Unknown characters are characters that do not occur anywhere in the GraphQL language, such as ? or %.

An unexpected character was found

Unexpected characters are characters that do exist in the GraphQL language, but is not expected at the current position in the document.

An unterminated string literal was found

Apart from forgetting the ending ", terminating a string within a Unicode escape sequence or having a line break in the string also causes this error.

An unknown character in a string literal was found

This occurs when an invalid source character is found in a string literal, such as ASCII control characters.

An unknown escape sequence in a string literal was found

Only a limited set of escape sequences are supported, this is emitted when e.g. "\l" is parsed.

The input source was unexpectedly terminated

Emitted when the current token requires a succeeding character, but the source has reached EOF. Emitted when scanning e.g. "1.".

An invalid number literal was found

Trait Implementations

impl Debug for LexerError
[src]

Formats the value using the given formatter.

impl PartialEq for LexerError
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for LexerError
[src]

impl Display for LexerError
[src]

Formats the value using the given formatter.