[][src]Struct async_std::stream::Inspect

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

A stream that does something with each element of another stream.

Trait Implementations

impl<S, F> Stream for Inspect<S, F, S::Item> where
    S: Stream,
    F: FnMut(&S::Item), 
[src]

type Item = S::Item

The type of items yielded by this stream. Read more

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

Auto Trait Implementations

impl<S, F, T> Send for Inspect<S, F, T> where
    F: Send,
    S: Send,
    T: Send

impl<S, F, T> Sync for Inspect<S, F, T> where
    F: Sync,
    S: Sync,
    T: Sync

impl<S, F, T> Unpin for Inspect<S, F, T> where
    F: Unpin,
    S: Unpin,
    T: Unpin

impl<S, F, T> UnwindSafe for Inspect<S, F, T> where
    F: UnwindSafe,
    S: UnwindSafe,
    T: UnwindSafe

impl<S, F, T> RefUnwindSafe for Inspect<S, F, T> where
    F: RefUnwindSafe,
    S: RefUnwindSafe,
    T: RefUnwindSafe

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

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

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

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