pub type Children = BTreeMap<String, NodeData>;Expand description
Branch node — a sorted map of child key to child data.
Each entry represents one child of a graph node. The key is the child’s
name within the parent; the value is the child’s NodeData (value +
timestamp). BTreeMap is used to ensure deterministic iteration order,
which is important for consistent checksums across distributed peers.
Aliased Type§
pub struct Children { /* private fields */ }