pub trait Store {
// Required methods
fn list(&self, archive: u8) -> Result<Vec<u32>, StoreError>;
fn read(&self, archive: u8, group: u32) -> Result<Vec<u8>, StoreError>;
}Expand description
The store is responsible for reading and writing data of the various RS2 formats.