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

Required methods

Implementations on Foreign Types

Implementors