Struct async_graphql::InputValueError [−][src]
pub struct InputValueError<T> { /* fields omitted */ }
Expand description
An error parsing an input value.
This type is generic over T as it uses T’s type name when converting to a regular error.
Implementations
The expected input type did not match the actual input type.
A custom error message.
Any type that implements Display
is automatically converted to this if you use the ?
operator.
Propagate the error message to a different type.
Convert the error into a server error.
Trait Implementations
Auto Trait Implementations
impl<T> RefUnwindSafe for InputValueError<T> where
T: RefUnwindSafe,
impl<T> Send for InputValueError<T> where
T: Send,
impl<T> Sync for InputValueError<T> where
T: Sync,
impl<T> Unpin for InputValueError<T> where
T: Unpin,
impl<T> UnwindSafe for InputValueError<T> where
T: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span
, returning an
Instrumented
wrapper. Read more
pub fn vzip(self) -> V
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more