pub trait BlockstoreExt: Blockstore {
// Provided methods
fn bulk_put<'a, S, V>(&self, values: V, code: Code) -> Result<Vec<Cid>>
where Self: Sized,
S: Serialize + 'a,
V: IntoIterator<Item = &'a S> { ... }
fn get_required(&self, cid: &Cid) -> Result<Vec<u8>> { ... }
}Expand description
Extension methods for inserting and retrieving IPLD data with CIDs
Provided Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".