[][src]Struct math::iter::union_zip::UnionZipped

pub struct UnionZipped<'a, K, M> { /* fields omitted */ }

Trait Implementations

impl<'a, K, V> IntoIterator for UnionZipped<'a, K, HashMap<K, V>> where
    K: Hash + Eq
[src]

type IntoIter = UnionZippedIter<'a, K, HashMap<K, V>, IntoIter<K>>

Which kind of iterator are we turning this into?

type Item = <UnionZippedIter<'a, K, HashMap<K, V>, IntoIter<K>> as Iterator>::Item

The type of the elements being iterated over.

impl<'a, K, V> IntoUnionZip<'a, K, HashMap<K, V, RandomState>> for UnionZipped<'a, K, HashMap<K, V>> where
    K: Hash + Eq + Clone + Ord
[src]

Auto Trait Implementations

impl<'a, K, M> RefUnwindSafe for UnionZipped<'a, K, M> where
    K: RefUnwindSafe,
    M: RefUnwindSafe
[src]

impl<'a, K, M> Send for UnionZipped<'a, K, M> where
    K: Send,
    M: Sync
[src]

impl<'a, K, M> Sync for UnionZipped<'a, K, M> where
    K: Sync,
    M: Sync
[src]

impl<'a, K, M> Unpin for UnionZipped<'a, K, M> where
    K: Unpin
[src]

impl<'a, K, M> UnwindSafe for UnionZipped<'a, K, M> where
    K: UnwindSafe,
    M: RefUnwindSafe
[src]

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<T> Pointable for T

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,