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