[][src]Struct mycelium_experimental::crossbeam_skiplist::Range

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

An iterator over a subset of entries of a SkipList.

Trait Implementations

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

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

The type of the elements being iterated over.

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

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

Auto Trait Implementations

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

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

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

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

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

Blanket Implementations

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

impl<T> From<T> for 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, 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.

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

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

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