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

pub trait RefMutFromWasmAbi: WasmDescribe {
    type Abi: WasmAbi;
    type Anchor: DerefMut<Target = Self>;
    unsafe fn ref_mut_from_abi(
        js: Self::Abi,
        extra: &mut dyn Stack
    ) -> Self::Anchor; }

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

impl RefMutFromWasmAbi for [u8]
[src]

impl RefMutFromWasmAbi for [i8]
[src]

impl RefMutFromWasmAbi for [u16]
[src]

impl RefMutFromWasmAbi for [i16]
[src]

impl RefMutFromWasmAbi for [u32]
[src]

impl RefMutFromWasmAbi for [i32]
[src]

impl RefMutFromWasmAbi for [u64]
[src]

impl RefMutFromWasmAbi for [i64]
[src]

impl RefMutFromWasmAbi for [f32]
[src]

impl RefMutFromWasmAbi for [f64]
[src]

Implementors