Trait wasm_bindgen::convert::RefMutFromWasmAbi[][src]

pub trait RefMutFromWasmAbi: WasmDescribe {
    type Abi: WasmAbi;
    type Anchor: DerefMut<Target = Self>;
    unsafe fn ref_mut_from_abi(js: Self::Abi) -> Self::Anchor;
}
Expand description

Dual of the RefFromWasmAbi trait, except for mutable references.

Associated Types

Same as RefFromWasmAbi::Abi

Same as RefFromWasmAbi::Anchor

Required methods

Same as RefFromWasmAbi::ref_from_abi

Implementations on Foreign Types

Implementors