pub trait FastCheckCache {
// Required methods
fn get(&self, key: FastCheckCacheKey) -> Option<FastCheckCacheItem>;
fn set(&self, key: FastCheckCacheKey, value: FastCheckCacheItem);
// Provided method
fn hash_seed(&self) -> &'static str { ... }
}
Expand description
Cache for storing the results of fast checks based on a package.