Struct crossbeam_skiplist::map::Range[][src]

pub struct Range<'a, Q: ?Sized, R, K, V> where
    K: Ord + Borrow<Q>,
    R: RangeBounds<Q>,
    Q: Ord
{ /* fields omitted */ }

An iterator over a subset of entries of a SkipMap.

Trait Implementations

impl<Q: ?Sized, R, K, V> Debug for Range<'_, Q, R, K, V> where
    K: Ord + Borrow<Q> + Debug,
    V: Debug,
    R: RangeBounds<Q> + Debug,
    Q: Ord
[src]

impl<'a, Q: ?Sized, R, K, V> DoubleEndedIterator for Range<'a, Q, R, K, V> where
    K: Ord + Borrow<Q>,
    R: RangeBounds<Q>,
    Q: Ord
[src]

impl<'a, Q: ?Sized, R, K, V> Iterator for Range<'a, Q, R, K, V> where
    K: Ord + Borrow<Q>,
    R: RangeBounds<Q>,
    Q: Ord
[src]

type Item = Entry<'a, K, V>

The type of the elements being iterated over.

Auto Trait Implementations

impl<'a, Q, R, K, V> !RefUnwindSafe for Range<'a, Q, R, K, V>

impl<'a, Q: ?Sized, R, K, V> Send for Range<'a, Q, R, K, V>

impl<'a, Q: ?Sized, R, K, V> Sync for Range<'a, Q, R, K, V>

impl<'a, Q: ?Sized, R, K, V> Unpin for Range<'a, Q, R, K, V> where
    R: Unpin

impl<'a, Q, R, K, V> !UnwindSafe for Range<'a, Q, R, K, V>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

impl<T> Pointable for T[src]

type Init = T

The type for initializers.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.