[−][src]Trait async_graphql::ResultExt
Extend a Result
's error value with ErrorExtensions
.
Required methods
fn extend_err<C>(self, cb: C) -> FieldResult<T> where
C: FnOnce(&E) -> Value,
[−]
C: FnOnce(&E) -> Value,
Extend the error value of the result with the callback.
fn extend(self) -> FieldResult<T>
[−]
Extend the result to a FieldResult
.
Implementations on Foreign Types
impl<T, E> ResultExt<T, E> for Result<T, E> where
E: ErrorExtensions + Send + Sync + 'static,
[src][−]
E: ErrorExtensions + Send + Sync + 'static,
fn extend_err<C>(self, cb: C) -> FieldResult<T> where
C: FnOnce(&E) -> Value,
[src]
C: FnOnce(&E) -> Value,