pub trait HasNodeIter<'a, _Outlives = &'a Self> {
    type Item;
    type NodeIterType: Iterator<Item = Self::Item>;
}

Required Associated Types

Implementors