[][src]Struct futures::stream::ForEach

#[must_use = "futures do nothing unless you `.await` or poll them"]pub struct ForEach<St, Fut, F> { /* fields omitted */ }

Future for the for_each method.

Trait Implementations

impl<St, Fut, F> Debug for ForEach<St, Fut, F> where
    Fut: Debug,
    St: Debug
[src]

impl<St, Fut, F> FusedFuture for ForEach<St, Fut, F> where
    F: FnMut(<St as Stream>::Item) -> Fut,
    Fut: Future<Output = ()>,
    St: FusedStream
[src]

impl<St, Fut, F> Future for ForEach<St, Fut, F> where
    F: FnMut(<St as Stream>::Item) -> Fut,
    Fut: Future<Output = ()>,
    St: Stream
[src]

type Output = ()

The type of value produced on completion.

impl<'pin, St, Fut, F> Unpin for ForEach<St, Fut, F> where
    __ForEach<'pin, St, Fut, F>: Unpin
[src]

Auto Trait Implementations

impl<St, Fut, F> RefUnwindSafe for ForEach<St, Fut, F> where
    F: RefUnwindSafe,
    Fut: RefUnwindSafe,
    St: RefUnwindSafe

impl<St, Fut, F> Send for ForEach<St, Fut, F> where
    F: Send,
    Fut: Send,
    St: Send

impl<St, Fut, F> Sync for ForEach<St, Fut, F> where
    F: Sync,
    Fut: Sync,
    St: Sync

impl<St, Fut, F> UnwindSafe for ForEach<St, Fut, F> where
    F: UnwindSafe,
    Fut: UnwindSafe,
    St: 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> FutureExt for T where
    T: Future + ?Sized
[src]

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

impl<F> IntoFuture for F where
    F: Future
[src]

type Output = <F as Future>::Output

🔬 This is a nightly-only experimental API. (into_future)

The output that the future will produce on completion.

type Future = F

🔬 This is a nightly-only experimental API. (into_future)

Which kind of future 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.