[][src]Struct staticvec::StaticVecSplice

pub struct StaticVecSplice<T, I: Iterator<Item = T>, const N: usize> { /* fields omitted */ }

A "splicing" iterator, analogous to vec::Splice. Instances of StaticVecSplice are created by the splice method on StaticVec.

Trait Implementations

impl<T: Debug, I: Iterator<Item = T>, const N: usize> Debug for StaticVecSplice<T, I, N>[src]

impl<T, I: Iterator<Item = T> + DoubleEndedIterator, const N: usize> DoubleEndedIterator for StaticVecSplice<T, I, N>[src]

impl<T, I: Iterator<Item = T>, const N: usize> Drop for StaticVecSplice<T, I, N>[src]

impl<T, I: Iterator<Item = T>, const N: usize> ExactSizeIterator for StaticVecSplice<T, I, N>[src]

impl<T, I: Iterator<Item = T>, const N: usize> FusedIterator for StaticVecSplice<T, I, N>[src]

impl<T, I: Iterator<Item = T>, const N: usize> Iterator for StaticVecSplice<T, I, N>[src]

type Item = T

The type of the elements being iterated over.

impl<T: Send, I: Iterator<Item = T>, const N: usize> Send for StaticVecSplice<T, I, N>[src]

impl<T: Sync, I: Iterator<Item = T>, const N: usize> Sync for StaticVecSplice<T, I, N>[src]

impl<T, I: Iterator<Item = T>, const N: usize> TrustedLen for StaticVecSplice<T, I, N>[src]

Auto Trait Implementations

impl<T, I, const N: usize> RefUnwindSafe for StaticVecSplice<T, I, N> where
    I: RefUnwindSafe,
    T: RefUnwindSafe

impl<T, I, const N: usize> Unpin for StaticVecSplice<T, I, N> where
    I: Unpin

impl<T, I, const N: usize> UnwindSafe for StaticVecSplice<T, I, N> where
    I: UnwindSafe,
    T: 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.