pub trait WasmStoreContext<'a, T, E: WasmEngine>: AsContext<E, UserState = T> { // Required methods fn engine(&self) -> &E; fn data(&self) -> &T; }
Provides a temporary immutable handle to a store.
Gets the engine associated with this store.
Gets an immutable reference to the underlying stored data.