Struct futures_util::stream::Concat
[−]
[src]
#[must_use = "streams do nothing unless polled"]pub struct Concat<S> where
S: 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<S: Debug> Debug for Concat<S> where
S: Stream,
S::Item: Debug, [src]
S: Stream,
S::Item: Debug,
fn fmt(&self, fmt: &mut Formatter) -> FmtResult[src]
Formats the value using the given formatter. Read more
impl<S> Future for Concat<S> where
S: Stream,
S::Item: Extend<<<S as Stream>::Item as IntoIterator>::Item> + IntoIterator + Default, [src]
S: Stream,
S::Item: Extend<<<S as Stream>::Item as IntoIterator>::Item> + IntoIterator + Default,