cancellable-promise 0.1.0

Cancellable JS promise in Rust
Documentation

Cancellable JS promise in Rust

Usage

let promise = wasm_bindgen_futures::future_to_promise(async move {
    ...
});

let abort_controller = Box::new(worker::AbortController::default());
let output = cancellable_promise::make(abort_controller.signal(), promise);

// eventually ...

abort_controller.abort();