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
This method tests for self and other values to be equal, and is used by ==. Read more
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more

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.

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

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.