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§
Source§impl Clone for LexerError
impl Clone for LexerError
Source§fn clone(&self) -> LexerError
fn clone(&self) -> LexerError
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for LexerError
impl Debug for LexerError
Source§impl Display for LexerError
impl Display for LexerError
Source§impl Error for LexerError
impl Error for LexerError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
Source§impl PartialEq for LexerError
impl PartialEq for LexerError
impl Eq for LexerError
impl StructuralPartialEq for LexerError
Auto Trait Implementations§
impl Freeze for LexerError
impl RefUnwindSafe for LexerError
impl Send for LexerError
impl Sync for LexerError
impl Unpin for LexerError
impl UnwindSafe for LexerError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.