puffin::puffin_manager

Trait BlobGuard

Source
pub trait BlobGuard {
    type Reader: RangeReader;

    // Required method
    fn reader<'life0, 'async_trait>(
        &'life0 self,
    ) -> Pin<Box<dyn Future<Output = Result<Self::Reader>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}
Expand description

BlobGuard is provided by the PuffinReader to access the blob data. Users should hold the BlobGuard until they are done with the blob data.

Required Associated Types§

Required Methods§

Source

fn reader<'life0, 'async_trait>( &'life0 self, ) -> Pin<Box<dyn Future<Output = Result<Self::Reader>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Implementations on Foreign Types§

Source§

impl<T: BlobGuard + ?Sized> BlobGuard for Arc<T>

Source§

type Reader = <T as BlobGuard>::Reader

Source§

fn reader<'life0, 'async_trait>( &'life0 self, ) -> Pin<Box<dyn Future<Output = Result<Self::Reader>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Implementors§