Signed-off-by: Yoshua Wuyts <yoshuawuyts@gmail.com>
This commit is contained in:
Yoshua Wuyts 2019-10-13 22:05:11 +02:00
parent b601bcfcb8
commit 04342c7b5d
No known key found for this signature in database
GPG key ID: 24EA8164F96777ED
2 changed files with 4 additions and 1 deletions

View file

@ -45,5 +45,7 @@ cfg_if! {
pub use extend::Extend;
pub use from_stream::FromStream;
pub use into_stream::IntoStream;
pub use stream::Merge;
}
}

View file

@ -1155,7 +1155,8 @@ extension_trait! {
#[doc = r#"
Combines multiple streams into a single stream of all their outputs.
This macro is only usable inside of async functions, closures, and blocks.
Items are yielded as soon as they're received, and the stream continues yield until both
streams have been exhausted.
# Examples