pub trait PersistentStore: Blockstore {
// Required method
fn put_keyed_persistent(&self, k: &Cid, block: &[u8]) -> Result<()>;
}Expand description
A trait that allows for storing data that is not garbage collected.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".