[][src]Trait rscache::CacheCore

pub trait CacheCore: CacheRead + Sized {
    fn new<P: AsRef<Path>>(path: P) -> Result<Self>;
}

The core of a cache.

Required methods

fn new<P: AsRef<Path>>(path: P) -> Result<Self>

Loading content...

Implementors

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

Loading content...