pub trait StorageBackend: Send + Sync {
// Required methods
fn write(&mut self, slot: &Slot, value: &[u8]);
fn read(&self, slot: &Slot) -> Option<Vec<u8>>;
}Expand description
A trait that defines the interface for a storage backend for the dump-block feature.