Expand description
This module implements the Node struct, which represents a file or directory in a structure that
mirrors the directory tree.
The Node struct implements two traits: FileNode and DirectoryNode. The FileNode
trait provides methods for getting information about a file, such as the cache offset, timestamp,
compressed length, and decompressed length. The DirectoryNode trait provides methods for getting
information about a directory, such as its children and a child with a given name.
Structs§
- Node
- A node in a tree.
Enums§
- Node
Kind - The kind of a node.
Traits§
- Directory
Node - Trait for directory nodes.
- File
Node - Trait for file nodes.