pub type Leaf<T> = Leaf<RegularFile<T>>;Expand description
A leaf node in the filesystem tree (file, symlink, or device), specialized for composefs regular files.
Aliased Type§
pub struct Leaf<T> {
pub stat: Stat,
pub content: LeafContent<RegularFile<T>>,
}Fields§
§stat: StatMetadata for this leaf node.
content: LeafContent<RegularFile<T>>The content and type of this leaf node.