pub type BlobFuture<'a, T> = Pin<Box<dyn Future<Output = Result<T, BlobStoreError>> + Send + 'a>>;
A boxed future returned by an immutable blob repository.
pub struct BlobFuture<'a, T> { /* private fields */ }