pub trait AsContextMut: AsContext {
    fn as_context_mut(&mut self) -> StoreContextMut<'_, Self::UserState>;
}
Expand description

A trait used to get exclusive access to a Store in wasmi.

Required Methods

Returns the store context that this type provides access to.

Implementations on Foreign Types

Implementors