Struct futures_util::stream::Concat[][src]

#[must_use = "streams do nothing unless polled"]
pub struct Concat<St: Stream> { /* fields omitted */ }

A stream combinator to concatenate the results of a stream into the first yielded item.

This structure is produced by the Stream::concat method.

Trait Implementations

impl<St: Stream + Unpin> Unpin for Concat<St>
[src]

impl<St> Debug for Concat<St> where
    St: Stream + Debug,
    St::Item: Debug
[src]

Formats the value using the given formatter. Read more

impl<St> Future for Concat<St> where
    St: Stream,
    St::Item: Extend<<St::Item as IntoIterator>::Item> + IntoIterator + Default
[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> Send for Concat<St> where
    St: Send,
    <St as Stream>::Item: Send

impl<St> Sync for Concat<St> where
    St: Sync,
    <St as Stream>::Item: Sync