Type Alias HistoryTree

Source
pub type HistoryTree<T> = HashMap<String, Link<HistoryNode<T>>>;
Expand description

For each key in the map, the value is a branch of a tree (i.e. a linked list) of all changes. This extends past name changes

Aliased Typeยง

struct HistoryTree<T> { /* private fields */ }