[][src]Struct compression::prelude::DecodeIterator

pub struct DecodeIterator<'a, I, D, B> where
    I: Iterator<Item = D::Input>,
    D: Decoder,
    B: BorrowMut<I>,
    CompressionError: From<D::Error>, 
{ /* fields omitted */ }

Trait Implementations

impl<'_, I, D, B> Iterator for DecodeIterator<'_, I, D, B> where
    I: Iterator<Item = D::Input>,
    D: Decoder,
    B: BorrowMut<I>,
    CompressionError: From<D::Error>, 
[src]

type Item = Result<D::Output, D::Error>

The type of the elements being iterated over.

impl<'a, I: Debug, D: Debug, B: Debug> Debug for DecodeIterator<'a, I, D, B> where
    I: Iterator<Item = D::Input>,
    D: Decoder,
    B: BorrowMut<I>,
    CompressionError: From<D::Error>, 
[src]

Auto Trait Implementations

impl<'a, I, D, B> Send for DecodeIterator<'a, I, D, B> where
    B: Send,
    D: Send

impl<'a, I, D, B> Unpin for DecodeIterator<'a, I, D, B> where
    B: Unpin

impl<'a, I, D, B> Sync for DecodeIterator<'a, I, D, B> where
    B: Sync,
    D: Sync

impl<'a, I, D, B> !UnwindSafe for DecodeIterator<'a, I, D, B>

impl<'a, I, D, B> RefUnwindSafe for DecodeIterator<'a, I, D, B> where
    B: RefUnwindSafe,
    D: RefUnwindSafe

Blanket Implementations

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> From<T> for T[src]

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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]