Struct rpds::map::red_black_tree_map::RangeIterPtr[][src]

pub struct RangeIterPtr<'a, K, V, RB, Q: ?Sized, P> where
    P: SharedPointerKind
{ /* fields omitted */ }

Trait Implementations

impl<'a, K: Debug, V: Debug, RB: Debug, Q: Debug + ?Sized, P: Debug> Debug for RangeIterPtr<'a, K, V, RB, Q, P> where
    P: SharedPointerKind
[src]

impl<'a, K, V, RB, Q: ?Sized, P> DoubleEndedIterator for RangeIterPtr<'a, K, V, RB, Q, P> where
    K: Ord + Borrow<Q>,
    Q: Ord,
    RB: RangeBounds<Q>,
    P: SharedPointerKind
[src]

impl<'a, K, V, RB, Q: ?Sized, P> Iterator for RangeIterPtr<'a, K, V, RB, Q, P> where
    K: Ord + Borrow<Q>,
    Q: Ord,
    RB: RangeBounds<Q>,
    P: SharedPointerKind
[src]

type Item = &'a SharedPointer<Entry<K, V>, P>

The type of the elements being iterated over.

Auto Trait Implementations

impl<'a, K, V, RB, Q: ?Sized, P> RefUnwindSafe for RangeIterPtr<'a, K, V, RB, Q, P> where
    K: RefUnwindSafe,
    P: RefUnwindSafe,
    Q: RefUnwindSafe,
    RB: RefUnwindSafe,
    V: RefUnwindSafe

impl<'a, K, V, RB, Q: ?Sized, P> Send for RangeIterPtr<'a, K, V, RB, Q, P> where
    K: Sync,
    P: Sync,
    Q: Send,
    RB: Send,
    V: Sync

impl<'a, K, V, RB, Q: ?Sized, P> Sync for RangeIterPtr<'a, K, V, RB, Q, P> where
    K: Sync,
    P: Sync,
    Q: Sync,
    RB: Sync,
    V: Sync

impl<'a, K, V, RB, Q: ?Sized, P> Unpin for RangeIterPtr<'a, K, V, RB, Q, P> where
    Q: Unpin,
    RB: Unpin

impl<'a, K, V, RB, Q: ?Sized, P> UnwindSafe for RangeIterPtr<'a, K, V, RB, Q, P> where
    K: RefUnwindSafe,
    P: RefUnwindSafe,
    Q: UnwindSafe,
    RB: UnwindSafe,
    V: RefUnwindSafe

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, 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.