pub type Node<V> = Node<Vec<Vec<V>>>;
A node in a Table index
Table
pub enum Node<V> { Index(Vec<Vec<V>>, Vec<Uuid>), Leaf(Vec<Vec<V>>), }