FacetTree

Type Alias FacetTree 

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

The root node ID.