Trait async_graphql::ResultExt[][src]

pub trait ResultExt<T, E>: Sized {
    fn extend_err<C>(self, cb: C) -> Result<T>
    where
        C: FnOnce(&E, &mut ErrorExtensionValues)
;
fn extend(self) -> Result<T>; }

Extend a Result’s error value with ErrorExtensions.

Required methods

fn extend_err<C>(self, cb: C) -> Result<T> where
    C: FnOnce(&E, &mut ErrorExtensionValues), 
[src]

Extend the error value of the result with the callback.

fn extend(self) -> Result<T>[src]

Extend the result to a Result.

Loading content...

Implementations on Foreign Types

impl<T, E> ResultExt<T, E> for Result<T, E> where
    E: ErrorExtensions + Send + Sync + 'static, 
[src]

Loading content...

Implementors

Loading content...