pub trait FileInfoCache<'a> {
// Required methods
fn get(&self, number: u64) -> Option<&Path>;
fn insert(&mut self, number: u64, path: PathBuf);
}
pub trait FileInfoCache<'a> {
// Required methods
fn get(&self, number: u64) -> Option<&Path>;
fn insert(&mut self, number: u64, path: PathBuf);
}