[][src]Trait sorted_iter::sorted_pair_iterator::SortedByKey

pub trait SortedByKey { }

marker trait for iterators that are sorted by the key of their Item

Implementations on Foreign Types

impl<I> SortedByKey for Empty<I>[src]

impl<I> SortedByKey for Once<I>[src]

impl<I> SortedByKey for Enumerate<I>[src]

impl<I: SortedByKey> SortedByKey for Take<I>[src]

impl<I: SortedByKey> SortedByKey for Skip<I>[src]

impl<I: SortedByKey> SortedByKey for StepBy<I>[src]

impl<I: SortedByKey> SortedByKey for Cloned<I>[src]

impl<I: SortedByKey> SortedByKey for Copied<I>[src]

impl<I: SortedByKey> SortedByKey for Fuse<I>[src]

impl<I: SortedByKey, F> SortedByKey for Inspect<I, F>[src]

impl<I: SortedByKey, P> SortedByKey for TakeWhile<I, P>[src]

impl<I: SortedByKey, P> SortedByKey for SkipWhile<I, P>[src]

impl<I: SortedByKey, P> SortedByKey for Filter<I, P>[src]

impl<I: SortedByKey + Iterator> SortedByKey for Peekable<I>[src]

impl<I: SortedByItem, J> SortedByKey for Zip<I, J>[src]

impl<K, V> SortedByKey for IntoIter<K, V>[src]

impl<'a, K, V> SortedByKey for Iter<'a, K, V>[src]

impl<'a, K, V> SortedByKey for IterMut<'a, K, V>[src]

impl<'a, K, V> SortedByKey for Range<'a, K, V>[src]

impl<'a, K, V> SortedByKey for RangeMut<'a, K, V>[src]

Loading content...

Implementors

impl<I: Iterator + SortedByItem> SortedByKey for Pairs<I>[src]

impl<I: Iterator> SortedByKey for AssumeSortedByKey<I>[src]

impl<I: Iterator, F> SortedByKey for FilterMapValues<I, F>[src]

impl<I: Iterator, F> SortedByKey for MapValues<I, F>[src]

impl<I: Iterator, J: Iterator> SortedByKey for Join<I, J>[src]

impl<I: Iterator, J: Iterator> SortedByKey for LeftJoin<I, J>[src]

impl<I: Iterator, J: Iterator> SortedByKey for OuterJoin<I, J>[src]

impl<I: Iterator, J: Iterator> SortedByKey for RightJoin<I, J>[src]

Loading content...