summaryrefslogtreecommitdiffstats
path: root/tokio/tests/stream_collect.rs
AgeCommit message (Collapse)Author
2020-10-05stream: remove bytes from public API (#2908)Alice Ryhl
2020-01-16chore: minor fixes (#2121)Artem Vorotnikov
* One more clippy fix, remove special instructions from CI * Fix Collect description
2020-01-13stream: add `StreamExt::collect()` (#2109)Carl Lerche
Provides an asynchronous equivalent to `Iterator::collect()`. A sealed `FromStream` trait is added. Stabilization is pending Rust supporting `async` trait fns.