[][src]Struct juniper::ExecutionError

pub struct ExecutionError<S> { /* fields omitted */ }

Error type for errors that occur during query execution

All execution errors contain the source position in the query of the field that failed to resolve. It also contains the field stack.

Methods

impl<S> ExecutionError<S>[src]

pub fn at_origin(error: FieldError<S>) -> ExecutionError<S>[src]

Construct a new execution error occuring at the beginning of the query

impl<S> ExecutionError<S>[src]

pub fn error(&self) -> &FieldError<S>[src]

The error message

pub fn location(&self) -> &SourcePosition[src]

The source location in the query of the field that failed to resolve

pub fn path(&self) -> &[String][src]

The path of fields leading to the field that generated this error

Trait Implementations

impl<S> Eq for ExecutionError<S> where
    Self: PartialEq
[src]

impl<S> PartialOrd<ExecutionError<S>> for ExecutionError<S> where
    Self: PartialEq
[src]

impl<S: PartialEq> PartialEq<ExecutionError<S>> for ExecutionError<S>[src]

impl<S> Ord for ExecutionError<S> where
    Self: Eq
[src]

impl<S: Debug> Debug for ExecutionError<S>[src]

impl<T> Serialize for ExecutionError<T> where
    T: ScalarValue
[src]

Auto Trait Implementations

impl<S> Send for ExecutionError<S> where
    S: Send

impl<S> Unpin for ExecutionError<S> where
    S: Unpin

impl<S> Sync for ExecutionError<S> where
    S: Sync

impl<S> UnwindSafe for ExecutionError<S> where
    S: UnwindSafe

impl<S> RefUnwindSafe for ExecutionError<S> where
    S: RefUnwindSafe

Blanket Implementations

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

impl<T> From<T> for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

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

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

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

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]