pub trait DirReadFile<F: File<Inner = <Self::Lock as Dir>::Inner>>: DirRead {
    fn get_file(&self, name: &PathSegment) -> TCResult<Option<F>>;
}
Expand description

A read lock on a Dir, used to read the files it stores

Required Methods§

Get a File in this Dir.

Implementors§