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

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

Error when tokenizing the input source

Variants

UnknownCharacter(char)

An unknown character was found

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

UnexpectedCharacter(char)

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.

UnterminatedString

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.

UnknownCharacterInString(char)

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.

UnknownEscapeSequence(String)

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.

UnexpectedEndOfFile

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.".

InvalidNumber

An invalid number literal was found

Trait Implementations

Formats the value using the given formatter. Read more

Formats the value using the given formatter. Read more

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

🔬 This is a nightly-only experimental API. (backtrace)

Returns a stack backtrace, if available, of where this error occurred. Read more

👎 Deprecated since 1.42.0:

use the Display impl or to_string()

👎 Deprecated since 1.33.0:

replaced by Error::source, which can support downcasting

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

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Compare self to key and return true if they are equal.

Performs the conversion.

Performs the conversion.

Converts the given value to a String. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.