[−][src]Enum juniper::parser::LexerError
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
impl PartialEq<LexerError> for LexerError
[src]
fn eq(&self, other: &LexerError) -> bool
[src]
fn ne(&self, other: &LexerError) -> bool
[src]
impl Eq for LexerError
[src]
impl Debug for LexerError
[src]
impl Display for LexerError
[src]
Auto Trait Implementations
impl Send for LexerError
impl Sync for LexerError
Blanket Implementations
impl<T> ToString for T where
T: Display + ?Sized,
[src]
T: Display + ?Sized,
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<Q, K> Equivalent for Q where
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,
[src]
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,