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

Required Associated Types

Implementors