pub trait StorageEngine: Send + Sync {
    fn load(&mut self, path: &str) -> StorageResult<Vec<u8>>;
    fn store(&mut self, path: &str, data: &[u8]) -> StorageResult<()>;
}

Required Methods

Implementors