[][src]Struct streamparser::iter::IterSource

pub struct IterSource<T, S> { /* fields omitted */ }

Implementations

impl<T, S> IterSource<T, S>[src]

pub fn new(stream: S) -> Self[src]

impl<T, S> IterSource<T, InfallibleWrapper<S>>[src]

pub fn new_infallible(stream: S) -> Self[src]

Trait Implementations

impl<B, E, T, S> Advance for IterSource<T, S> where
    T: Clone,
    B: AsRef<[T]>,
    S: Iterator<Item = Result<B, E>>, 
[src]

type Error = E

impl<B, E, T, S> AdvanceAsync for IterSource<T, S> where
    T: Clone + Unpin,
    B: AsRef<[T]>,
    S: Stream<Item = Result<B, E>> + Unpin
[src]

type Error = E

impl<T, S> Buffer for IterSource<T, S>[src]

type Output = [T]

impl<T: Debug, S: Debug> Debug for IterSource<T, S>[src]

Auto Trait Implementations

impl<T, S> RefUnwindSafe for IterSource<T, S> where
    S: RefUnwindSafe,
    T: RefUnwindSafe

impl<T, S> Send for IterSource<T, S> where
    S: Send,
    T: Send

impl<T, S> Sync for IterSource<T, S> where
    S: Sync,
    T: Sync

impl<T, S> Unpin for IterSource<T, S> where
    S: Unpin,
    T: Unpin

impl<T, S> UnwindSafe for IterSource<T, S> where
    S: UnwindSafe,
    T: UnwindSafe

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<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.