Struct futures::stream::Concat[][src]

#[must_use = "streams do nothing unless polled"]
pub struct Concat<St> where
    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> Unpin for Concat<St> where
    St: Unpin + Stream
[src]

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

Formats the value using the given formatter. Read more

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