Expand description
A module which is typically glob imported.
use wasm_bindgen::prelude::*;
Structs§
- A handle to both a closure in Rust as well as JS closure which will invoke the Rust closure.
- Convenience type for use on exported
fn() -> Result<T, JsError>
functions, where you wish to throw a JavaScriptError
object. - Representation of an object owned by JS.
Traits§
- A trait for checked and unchecked casting between JS types.
- An extension trait for
Option<T>
andResult<T, E>
for unwrapping theT
value, or throwing a JS error if it is not available.