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

#[must_use = "streams do nothing unless polled"]
pub struct ForEach<S, U, F> where
    U: IntoFuture
{ /* fields omitted */ }

A stream combinator which executes a unit closure over each item on a stream.

This structure is returned by the Stream::for_each method.

Trait Implementations

impl<S, U, F> Debug for ForEach<S, U, F> where
    F: Debug,
    S: Debug,
    U: Debug + IntoFuture,
    <U as IntoFuture>::Future: Debug
[src]

[src]

Formats the value using the given formatter. Read more

impl<S, U, F> Future for ForEach<S, U, F> where
    F: FnMut(<S as Stream>::Item) -> U,
    S: Stream,
    U: IntoFuture<Item = (), Error = <S as Stream>::Error>, 
[src]

A successful value

An error

[src]

Attempt to resolve the future to a final value, registering the current task for wakeup if the value is not yet available. Read more

Auto Trait Implementations

impl<S, U, F> Send for ForEach<S, U, F> where
    F: Send,
    S: Send,
    <U as IntoFuture>::Future: Send

impl<S, U, F> Sync for ForEach<S, U, F> where
    F: Sync,
    S: Sync,
    <U as IntoFuture>::Future: Sync