[][src]Trait rscache::CacheRead

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

The read functionality of a cache.

Required methods

fn read(&self, index_id: u8, archive_id: u32) -> Result<Vec<u8>>

Loading content...

Implementors

impl<S: Store> CacheRead for Cache<S>[src]

Loading content...