pub trait TryBundle: TryBundleSendSync + Serialize + DeserializeOwned {
    fn try_extend_bundle<'life0, 'life1, 'life2, 'async_trait, S>(
        &'life0 self,
        bundle: &'life1 mut Bundle,
        _store: &'life2 S
    ) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
    where
        S: 'async_trait + BlockStore,
        'life0: 'async_trait,
        'life1: 'async_trait,
        'life2: 'async_trait,
        Self: Sync + 'async_trait
, { ... } fn try_extend_bundle_with_cid<'life0, 'life1, 'life2, 'async_trait, S>(
        cid: &'life0 Cid,
        bundle: &'life1 mut Bundle,
        store: &'life2 S
    ) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
    where
        S: 'async_trait + BlockStore,
        'life0: 'async_trait,
        'life1: 'async_trait,
        'life2: 'async_trait,
        Self: Send + 'async_trait
, { ... } fn try_bundle<'life0, 'life1, 'async_trait, S>(
        &'life0 self,
        store: &'life1 S
    ) -> Pin<Box<dyn Future<Output = Result<Bundle>> + Send + 'async_trait>>
    where
        S: 'async_trait + BlockStore,
        'life0: 'async_trait,
        'life1: 'async_trait,
        Self: Sync + 'async_trait
, { ... } fn try_bundle_with_cid<'life0, 'life1, 'async_trait, S>(
        cid: &'life0 Cid,
        store: &'life1 S
    ) -> Pin<Box<dyn Future<Output = Result<Bundle>> + Send + 'async_trait>>
    where
        S: 'async_trait + BlockStore,
        'life0: 'async_trait,
        'life1: 'async_trait,
        Self: Send + 'async_trait
, { ... } }

Provided Methods

Implementors