pub type FacetTree = Tree<NodeKind, NodeLabel>;Expand description
A tree built from a Peek value, ready for diffing.
Aliased Type§
pub struct FacetTree {
pub arena: Arena<NodeData<NodeKind, NodeLabel>>,
pub root: NodeId,
}Fields§
§arena: Arena<NodeData<NodeKind, NodeLabel>>The arena storing all nodes.
root: NodeIdThe root node ID.