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.
pub trait PersistentStore: Blockstore {
// Required method
fn put_keyed_persistent(&self, k: &Cid, block: &[u8]) -> Result<()>;
}A trait that allows for storing data that is not garbage collected.