pub trait IterContent<T> {
    fn content(self) -> T;
}
Expand description

This trait allows iterators to return elements other than that stored inside the tree. Useful for returning key-value-pairs from AATreeMap.

Required Methods

Implementors