pub trait WasmStoreContextMut<'a, T, E: WasmEngine>: WasmStoreContext<'a, T, E> + AsContextMut<E, UserState = T> {
    // Required method
    fn data_mut(&mut self) -> &mut T;
}
Expand description

Provides a temporary mutable handle to a store.

Required Methods§

source

fn data_mut(&mut self) -> &mut T

Gets a mutable reference to the underlying stored data.

Implementors§