Struct juniper::ExecutionError[][src]

pub struct ExecutionError { /* 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 ExecutionError
[src]

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

impl ExecutionError
[src]

The error message

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

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

Trait Implementations

impl Debug for ExecutionError
[src]

Formats the value using the given formatter. Read more

impl PartialEq for ExecutionError
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for ExecutionError
[src]

impl PartialOrd for ExecutionError
[src]

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Ord for ExecutionError
[src]

This method returns an Ordering between self and other. Read more

Compares and returns the maximum of two values. Read more

Compares and returns the minimum of two values. Read more

impl Serialize for ExecutionError
[src]

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations