Trait rscache::cache::CacheRead[][src]

pub trait CacheRead {
    fn read(&self, index_id: u8, archive_id: u32) -> Result<Vec<u8>>;

    fn read_archive(&self, archive: &ArchiveRef) -> Result<Vec<u8>> { ... }
}
Expand description

The read functionality of a cache.

Required methods

Provided methods

Implementors