Struct dst::FixedVecIter[][src]

pub struct FixedVecIter<'a, V, T> { /* fields omitted */ }

Trait Implementations

impl<'a, T, S> Clone for Iter<'a, T, S>[src]

impl<T: Debug, S: Debug> Debug for Iter<'_, T, S>[src]

impl<T: Eq, S: Eq> Eq for Iter<'_, T, S>[src]

impl<'a, T, S> From<IterMut<'a, T, S>> for Iter<'a, T, S>[src]

impl<T: Hash, S: Hash> Hash for Iter<'_, T, S>[src]

impl<'a, T, S> Iterator for Iter<'a, T, S>[src]

type Item = &'a Handle<T, [S]>

The type of the elements being iterated over.

impl<TL: PartialEq<TR>, TR, SL: PartialEq<SR>, SR> PartialEq<Iter<'_, TR, SR>> for Iter<'_, TL, SL>[src]

Auto Trait Implementations

impl<'a, V, T> RefUnwindSafe for Iter<'a, V, T> where
    T: RefUnwindSafe,
    V: RefUnwindSafe
[src]

impl<'a, V, T> Send for Iter<'a, V, T> where
    T: Sync,
    V: Sync
[src]

impl<'a, V, T> Sync for Iter<'a, V, T> where
    T: Sync,
    V: Sync
[src]

impl<'a, V, T> Unpin for Iter<'a, V, T>[src]

impl<'a, V, T> UnwindSafe for Iter<'a, V, T> where
    T: RefUnwindSafe,
    V: 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<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.