Type Alias Node

Source
pub type Node<V> = Node<Vec<Vec<V>>>;
Expand description

A node in a Table index

Aliased Type§

pub enum Node<V> {
    Index(Vec<Vec<V>>, Vec<Uuid>),
    Leaf(Vec<Vec<V>>),
}

Variants§

§

Index(Vec<Vec<V>>, Vec<Uuid>)

§

Leaf(Vec<Vec<V>>)