wasm-bindgen/crates/futures
Alex Crichton 82467f9793 Use dyn with all trait objects
Fixes new warnings showing up on nightly nowadays.
2019-06-03 08:28:55 -07:00
..
src Use dyn with all trait objects 2019-06-03 08:28:55 -07:00
tests Fix compile errors on nightly 2019-05-28 07:05:52 -07:00
Cargo.toml Bump to 0.2.45 2019-05-20 09:44:03 -07:00
README.md futures: Add more documentation and example usage 2018-08-08 17:44:38 -07:00

wasm-bindgen-futures

API Documention

This crate bridges the gap between a Rust Future and a JavaScript Promise. It provides two conversions:

  1. From a JavaScript Promise into a Rust Future.
  2. From a Rust Future into a JavaScript Promise.

See the API documentation for more info.