[][src]Struct generic_vec::iter::Splice

pub struct Splice<'a, T, S: ?Sized, I> where
    S: Storage<T>,
    I: Iterator<Item = T>, 
{ /* fields omitted */ }

This struct is created by GenericVec::splice. See its documentation for more.

Trait Implementations

impl<'a, T, S: ?Sized + Storage<T>, I: Iterator<Item = T>> DoubleEndedIterator for Splice<'a, T, S, I>[src]

impl<T, S: ?Sized + Storage<T>, I: Iterator<Item = T>, '_> Drop for Splice<'_, T, S, I>[src]

impl<T, S: ?Sized + Storage<T>, I: Iterator<Item = T>, '_> ExactSizeIterator for Splice<'_, T, S, I>[src]

impl<'a, T, S: ?Sized + Storage<T>, I: Iterator<Item = T>> Iterator for Splice<'a, T, S, I>[src]

type Item = I::Item

The type of the elements being iterated over.

Auto Trait Implementations

impl<'a, T, S: ?Sized, I> RefUnwindSafe for Splice<'a, T, S, I> where
    I: RefUnwindSafe,
    S: RefUnwindSafe,
    T: RefUnwindSafe

impl<'a, T, S: ?Sized, I> Send for Splice<'a, T, S, I> where
    I: Send,
    S: Send,
    T: Send

impl<'a, T, S: ?Sized, I> Sync for Splice<'a, T, S, I> where
    I: Sync,
    S: Sync,
    T: Sync

impl<'a, T, S: ?Sized, I> Unpin for Splice<'a, T, S, I> where
    I: Unpin

impl<'a, T, S, I> !UnwindSafe for Splice<'a, T, S, 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.