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.

Required Associated Types

Same as RefFromWasmAbi::Abi

Same as RefFromWasmAbi::Anchor

Required Methods

Same as RefFromWasmAbi::ref_from_abi

Implementations on Foreign Types

Implementors