pub type BTreeMap<K, V> = BTreeMap<K, V, Slab<Node<K, V>>>;
B-Tree map based on Slab.
Slab
struct BTreeMap<K, V> { /* private fields */ }