pub struct Directory<'a> {
pub children: BTreeMap<PathSegment, DirEntry<'a>>,
}Expand description
A directory in a volume.
Fields§
§children: BTreeMap<PathSegment, DirEntry<'a>>The items in this directory.
pub struct Directory<'a> {
pub children: BTreeMap<PathSegment, DirEntry<'a>>,
}A directory in a volume.
children: BTreeMap<PathSegment, DirEntry<'a>>The items in this directory.