[][src]Struct tinyvec::TinyVecSplice

pub struct TinyVecSplice<'p, A: Array, I: Iterator<Item = A::Item>> { /* fields omitted */ }

Splicing iterator for TinyVec See TinyVec::splice

Trait Implementations

impl<'p, A, I> DoubleEndedIterator for TinyVecSplice<'p, A, I> where
    A: Array,
    I: Iterator<Item = A::Item> + DoubleEndedIterator
[src]

impl<'p, A: Array, I: Iterator<Item = A::Item>> Drop for TinyVecSplice<'p, A, I>[src]

impl<'p, A, I> ExactSizeIterator for TinyVecSplice<'p, A, I> where
    A: Array,
    I: Iterator<Item = A::Item>, 
[src]

impl<'p, A, I> FusedIterator for TinyVecSplice<'p, A, I> where
    A: Array,
    I: Iterator<Item = A::Item>, 
[src]

impl<'p, A, I> Iterator for TinyVecSplice<'p, A, I> where
    A: Array,
    I: Iterator<Item = A::Item>, 
[src]

type Item = A::Item

The type of the elements being iterated over.

Auto Trait Implementations

impl<'p, A, I> RefUnwindSafe for TinyVecSplice<'p, A, I> where
    A: RefUnwindSafe,
    I: RefUnwindSafe,
    <A as Array>::Item: RefUnwindSafe

impl<'p, A, I> Send for TinyVecSplice<'p, A, I> where
    A: Send,
    I: Send,
    <A as Array>::Item: Send

impl<'p, A, I> Sync for TinyVecSplice<'p, A, I> where
    A: Sync,
    I: Sync,
    <A as Array>::Item: Sync

impl<'p, A, I> Unpin for TinyVecSplice<'p, A, I> where
    I: Unpin

impl<'p, A, I> !UnwindSafe for TinyVecSplice<'p, A, I>

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.