[][src]Enum juniper::parser::ParseError

pub enum ParseError<'a> {
    UnexpectedToken(Token<'a>),
    UnexpectedEndOfFile,
    LexerError(LexerError),
}

Error while parsing a GraphQL query

Variants

UnexpectedToken(Token<'a>)

An unexpected token occurred in the source

UnexpectedEndOfFile

The input source abruptly ended

LexerError(LexerError)

An error during tokenization occurred

Trait Implementations

impl<'a> PartialEq<ParseError<'a>> for ParseError<'a>[src]

impl<'a> Debug for ParseError<'a>[src]

impl<'a> Display for ParseError<'a>[src]

Auto Trait Implementations

impl<'a> Send for ParseError<'a>

impl<'a> Sync for ParseError<'a>

Blanket Implementations

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

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

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

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

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]