[−][src]Trait wasm_bindgen::convert::RefFromWasmAbi
A trait for anything that can be recovered as some sort of shared reference from the wasm ABI boundary.
This is the shared reference variant of the opposite operation as
IntoWasmAbi
.
Associated Types
type Abi: WasmAbi
The wasm ABI type references to Self
are recovered from.
type Anchor: Deref<Target = Self>
The type that holds the reference to Self
for the duration of the
invocation of the function that has an &Self
parameter. This is
required to ensure that the lifetimes don't persist beyond one function
call, and so that they remain anonymous.