Trait iroh_blobs::format::collection::SimpleStore
source · pub trait SimpleStore {
// Required method
fn load(
&self,
hash: Hash
) -> impl Future<Output = Result<Bytes>> + Send + '_;
}
Expand description
A simple store trait for loading blobs
Required Methods§
Object Safety§
This trait is not object safe.
Implementors§
impl<C> SimpleStore for Client<C>where
C: Connector<RpcService>,
Available on crate feature
rpc
only.