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
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.
UnterminatedStringAn 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.
UnexpectedEndOfFileThe 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.".
InvalidNumberAn invalid number literal was found
Trait Implementations
impl Debug for LexerError[src]
impl Debug for LexerErrorfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl PartialEq for LexerError[src]
impl PartialEq for LexerErrorfn eq(&self, other: &LexerError) -> bool[src]
fn eq(&self, other: &LexerError) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &LexerError) -> bool[src]
fn ne(&self, other: &LexerError) -> boolThis method tests for !=.
impl Eq for LexerError[src]
impl Eq for LexerErrorimpl Display for LexerError[src]
impl Display for LexerErrorAuto Trait Implementations
impl Send for LexerError
impl Send for LexerErrorimpl Sync for LexerError
impl Sync for LexerError