Available on crate feature
futures-core-03-stream
only.Expand description
Converting JavaScript AsyncIterator
s to Rust Stream
s.
Analogous to the promise to future conversion, this module allows
turning objects implementing the async iterator protocol into Stream
s
that produce values that can be awaited from.
Structsยง
- A
Stream
that yields values from an underlyingAsyncIterator
.