xrust 2.0.3

Support for XPath and XSLT
Documentation
1
2
3
4
5
6
7
8
//! Various implementations of tree data structures.

/// Interior Mutability Tree. This tree implementation is both mutable and fully navigable.
//pub mod intmuttree;
pub(crate) mod nullo;
/// Interior Mutability Tuple-Struct with Enum.
/// This tree implementation is an evolution of intmuttree that represents each type of node as variants in an enum, wrapped in a tuple struct.
pub mod smite;