Type Definition git_historian::HistoryTree [] [src]

type HistoryTree<T> = HashMap<String, Link<HistoryNode<T>>>;

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