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.