We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b601bcf commit 04342c7Copy full SHA for 04342c7
src/stream/mod.rs
@@ -45,5 +45,7 @@ cfg_if! {
45
pub use extend::Extend;
46
pub use from_stream::FromStream;
47
pub use into_stream::IntoStream;
48
+
49
+ pub use stream::Merge;
50
}
51
src/stream/stream/mod.rs
@@ -1155,7 +1155,8 @@ extension_trait! {
1155
#[doc = r#"
1156
Combines multiple streams into a single stream of all their outputs.
1157
1158
- 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
1159
+ streams have been exhausted.
1160
1161
# Examples
1162
0 commit comments