xrust/trees/mod.rs
1//! Various implementations of tree data structures.
2
3/// Interior Mutability Tree. This tree implementation is both mutable and fully navigable.
4//pub mod intmuttree;
5pub(crate) mod nullo;
6/// Interior Mutability Tuple-Struct with Enum.
7/// This tree implementation is an evolution of intmuttree that represents each type of node as variants in an enum, wrapped in a tuple struct.
8pub mod smite;