pub trait AbstractFilesystem {
    fn file_names_in(&self, rel_path: &str) -> Result<BTreeSet<Box<str>>>;
}

Required Methods

Implementors