Leaf

Type Alias Leaf 

Source
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: Stat

Metadata for this leaf node.

§content: LeafContent<RegularFile<T>>

The content and type of this leaf node.