[][src]Struct futures_util::try_stream::TryForEachConcurrent

#[must_use = "streams do nothing unless polled"]
pub struct TryForEachConcurrent<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 TryStreamExt::try_for_each_concurrent method.

Trait Implementations

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

Formats the value using the given formatter. Read more

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

impl<St, Fut, F> Future for TryForEachConcurrent<St, Fut, F> where
    St: TryStream,
    F: FnMut(St::Ok) -> Fut,
    Fut: Future<Output = Result<(), St::Error>>, 
[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 TryForEachConcurrent<St, Fut, F> where
    F: Send,
    Fut: Send,
    St: Send

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