[][src]Struct futures_util::stream::ForEachConcurrent

#[must_use = "streams do nothing unless polled"]
pub struct ForEachConcurrent<St, Fut, F> { /* fields omitted */ }

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

This structure is returned by the StreamExt::for_each_concurrent method.

Trait Implementations

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

Formats the value using the given formatter. Read more

impl<St, Fut, F> Unpin for ForEachConcurrent<St, Fut, F> where
    St: Unpin,
    Fut: Unpin
[src]

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

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

futures in libcore are unstable

The result of the Future.

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

futures in libcore are unstable

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<St, Fut, F> Send for ForEachConcurrent<St, Fut, F> where
    F: Send,
    Fut: Send,
    St: Send

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