[][src]Struct total_order_multi_map::Group

pub struct Group<'a, K, T: ?Sized> where
    K: Copy + 'a,
    T: 'a, 
{ /* fields omitted */ }

A iterator over &V::Target values returned by GroupedValues.

It will iterate over all values associated with a specific key in the order they where inserted.

Methods

impl<'a, K, T: ?Sized> Group<'a, K, T> where
    K: Copy + 'a,
    T: 'a, 
[src]

pub fn key(&self) -> K[src]

Trait Implementations

impl<'a, K, T: ?Sized> Iterator for Group<'a, K, T> where
    K: Copy + 'a,
    T: 'a, 
[src]

type Item = &'a T

The type of the elements being iterated over.

impl<'a, K, T: ?Sized> Clone for Group<'a, K, T> where
    K: Copy + 'a,
    T: 'a, 
[src]

impl<'a, K, T: ?Sized> Debug for Group<'a, K, T> where
    K: Debug + Copy + 'a,
    T: Debug + 'a, 
[src]

Auto Trait Implementations

impl<'a, K, T> !Send for Group<'a, K, T>

impl<'a, K, T> !Sync for Group<'a, K, T>

impl<'a, K, T: ?Sized> Unpin for Group<'a, K, T> where
    K: Unpin

impl<'a, K, T: ?Sized> UnwindSafe for Group<'a, K, T> where
    K: UnwindSafe,
    T: RefUnwindSafe

impl<'a, K, T: ?Sized> RefUnwindSafe for Group<'a, K, T> where
    K: RefUnwindSafe,
    T: RefUnwindSafe

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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]