Expand description
§⚠️ Unstable
This is an internal module, no stability guarantees are provided. Use at your own risk.
Structs§
- A repr(C) struct containing all of the primitives of a
WasmAbi
type, in order. - ⚠️ Unstable
Traits§
- A trait for anything that can be recovered by-value from the Wasm ABI boundary, eg a Rust
u8
can be recovered from the Wasm ABIu32
type. - A trait for anything that can be converted into a type that can cross the Wasm ABI directly, eg
u32
orf64
. - A version of the
RefFromWasmAbi
trait with the additional requirement that the reference must remain valid as long as the anchor isn’t dropped. - Indicates that this type can be received from JS as
Option<Self>
. - Indicates that this type can be passed to JS as
Option<Self>
. - A trait for anything that can be recovered as some sort of shared reference from the Wasm ABI boundary.
- Dual of the
RefFromWasmAbi
trait, except for mutable references. - A trait representing how to interpret the return value of a function for the Wasm ABI.
TryFromJsValue
is a trait for converting a JavaScript value (JsValue
) into a Rust type. It is used by thewasm_bindgen
proc-macro to allow conversion to user types.- Trait for element types to implement FromWasmAbi for vectors of themselves.
- Trait for element types to implement IntoWasmAbi for vectors of themselves.
- A trait which represents types that can be passed across the Wasm ABI boundary, by being split into multiple Wasm primitive types.
- A trait for any type which maps to a Wasm primitive type when used in FFI (
i32
,i64
,f32
, orf64
).
Functions§
- ⚠️ Unstable
- ⚠️ Unstable