pub trait InternalStorageService: Send + Sync + 'static {
    fn chainAddEdges<'life0, 'async_trait>(
        &'life0 self,
        _req: ChainAddEdgesRequest
    ) -> Pin<Box<dyn Future<Output = Result<ExecResponse, ChainAddEdgesExn>> + Send + 'async_trait>>
    where
        Self: 'async_trait,
        'life0: 'async_trait
, { ... } fn chainUpdateEdge<'life0, 'async_trait>(
        &'life0 self,
        _req: ChainUpdateEdgeRequest
    ) -> Pin<Box<dyn Future<Output = Result<UpdateResponse, ChainUpdateEdgeExn>> + Send + 'async_trait>>
    where
        Self: 'async_trait,
        'life0: 'async_trait
, { ... } }

Provided Methods§

Implementations on Foreign Types§

Implementors§