Open
Description
AsyncIterator
in JS is the native equivalent of Promise to represent multiple future values instead of one just as in Rust we have Future
and Stream
(soon in the standard library). Instead of creating a separate utility crate that converts async iterators to Rust streams I propose having that in function(e.g. iter_to_stream
) in the wasm-bindgen-futures
crate since the feature(can be behind a flag) is very "futures" related.