pub trait Termination {
    fn into_js_result(self) -> Result<(), JsValue>;
}
Expand description

Similar to std::process::Termination, but for wasm-bindgen tests.

Required Methods

Convert this into a JS result.

Implementations on Foreign Types

Implementors