Function hydroflow::util::collect_ready_async
source ยท pub async fn collect_ready_async<C, S>(stream: S) -> C
Expand description
Collects the immediately available items from the Stream
into a collection (Default
+ Extend
).
This consumes the stream, use [futures::StreamExt::by_ref()
] (or just &mut ...
) if you want
to retain ownership of your stream.