pub trait SortedStartsMap<T, VR>: Iterator<Item = (RangeInclusive<T>, VR)> + FusedIterator{ }Expand description
Used internally. Marks iterators that provide (range, value) pairs that are sorted by the range’s start, but
that are not necessarily disjoint.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".