pub trait WithGraphErrorAsync: Sized {
    // Required method
    fn with_graph_error<'async_trait>(
        self
    ) -> Pin<Box<dyn Future<Output = Result<Self, GraphError>> + Send + 'async_trait>>
       where Self: 'async_trait;
}

Required Methods§

source

fn with_graph_error<'async_trait>( self ) -> Pin<Box<dyn Future<Output = Result<Self, GraphError>> + Send + 'async_trait>>where Self: 'async_trait,

Implementations on Foreign Types§

source§

impl WithGraphErrorAsync for Response

source§

fn with_graph_error<'async_trait>( self ) -> Pin<Box<dyn Future<Output = Result<Self, GraphError>> + Send + 'async_trait>>where Self: 'async_trait,

Implementors§