pub struct StoreContextMut<'a, T: 'static>(/* private fields */);
Expand description
Newtype wrapper around [wasmtime::StoreContextMut<'a, T>
].
Implementations§
Source§impl<'a, T: 'static> StoreContextMut<'a, T>
impl<'a, T: 'static> StoreContextMut<'a, T>
Sourcepub fn new(inner: StoreContextMut<'a, T>) -> Self
pub fn new(inner: StoreContextMut<'a, T>) -> Self
Create a wasm_runtime_layer::StoreContextMut
-compatible StoreContextMut
from a [wasmtime::StoreContextMut<'a, T>
].
Sourcepub fn into_inner(self) -> StoreContextMut<'a, T>
pub fn into_inner(self) -> StoreContextMut<'a, T>
Consume a StoreContextMut
to obtain the inner [wasmtime::StoreContextMut<'a, T>
].
Methods from Deref<Target = StoreContextMut<'a, T>>§
Sourcepub fn data(&self) -> &T
pub fn data(&self) -> &T
Access the underlying data owned by this Store
.
Same as Store::data
.
Sourcepub fn data_mut(&mut self) -> &mut T
pub fn data_mut(&mut self) -> &mut T
Access the underlying data owned by this Store
.
Same as Store::data_mut
.
Sourcepub fn gc(&mut self, why: Option<&GcHeapOutOfMemory<()>>)
pub fn gc(&mut self, why: Option<&GcHeapOutOfMemory<()>>)
Perform garbage collection of ExternRef
s.
Same as Store::gc
.
This method is only available when the gc
Cargo feature is enabled.
Sourcepub fn get_fuel(&self) -> Result<u64, Error>
pub fn get_fuel(&self) -> Result<u64, Error>
Returns remaining fuel in this store.
For more information see Store::get_fuel
Sourcepub fn set_fuel(&mut self, fuel: u64) -> Result<(), Error>
pub fn set_fuel(&mut self, fuel: u64) -> Result<(), Error>
Set the amount of fuel in this store.
For more information see Store::set_fuel
Sourcepub fn fuel_async_yield_interval(
&mut self,
interval: Option<u64>,
) -> Result<(), Error>
pub fn fuel_async_yield_interval( &mut self, interval: Option<u64>, ) -> Result<(), Error>
Configures this Store
to periodically yield while executing futures.
For more information see Store::fuel_async_yield_interval
Sourcepub fn set_epoch_deadline(&mut self, ticks_beyond_current: u64)
pub fn set_epoch_deadline(&mut self, ticks_beyond_current: u64)
Sets the epoch deadline to a certain number of ticks in the future.
For more information see Store::set_epoch_deadline
.
Sourcepub fn epoch_deadline_trap(&mut self)
pub fn epoch_deadline_trap(&mut self)
Configures epoch-deadline expiration to trap.
For more information see Store::epoch_deadline_trap
.
Trait Implementations§
Source§impl<T: 'static> AsContext<Engine> for StoreContextMut<'_, T>
impl<T: 'static> AsContext<Engine> for StoreContextMut<'_, T>
Source§fn as_context(&self) -> StoreContext<'_, T>
fn as_context(&self) -> StoreContext<'_, T>
Source§impl<T: 'static> AsContextMut<Engine> for StoreContextMut<'_, T>
impl<T: 'static> AsContextMut<Engine> for StoreContextMut<'_, T>
Source§fn as_context_mut(&mut self) -> StoreContextMut<'_, T>
fn as_context_mut(&mut self) -> StoreContextMut<'_, T>
Source§impl<'a, T: 'static> AsMut<StoreContextMut<'a, T>> for StoreContextMut<'a, T>
impl<'a, T: 'static> AsMut<StoreContextMut<'a, T>> for StoreContextMut<'a, T>
Source§fn as_mut(&mut self) -> &mut StoreContextMut<'a, T>
fn as_mut(&mut self) -> &mut StoreContextMut<'a, T>
Source§impl<'a, T: 'static> AsMut<StoreContextMut<'a, T>> for StoreContextMut<'a, T>
impl<'a, T: 'static> AsMut<StoreContextMut<'a, T>> for StoreContextMut<'a, T>
Source§fn as_mut(&mut self) -> &mut StoreContextMut<'a, T>
fn as_mut(&mut self) -> &mut StoreContextMut<'a, T>
Source§impl<'a, T: 'static> AsRef<StoreContextMut<'a, T>> for StoreContextMut<'a, T>
impl<'a, T: 'static> AsRef<StoreContextMut<'a, T>> for StoreContextMut<'a, T>
Source§fn as_ref(&self) -> &StoreContextMut<'a, T>
fn as_ref(&self) -> &StoreContextMut<'a, T>
Source§impl<'a, T: 'static> AsRef<StoreContextMut<'a, T>> for StoreContextMut<'a, T>
impl<'a, T: 'static> AsRef<StoreContextMut<'a, T>> for StoreContextMut<'a, T>
Source§fn as_ref(&self) -> &StoreContextMut<'a, T>
fn as_ref(&self) -> &StoreContextMut<'a, T>
Source§impl<'a, T: 'static> Deref for StoreContextMut<'a, T>
impl<'a, T: 'static> Deref for StoreContextMut<'a, T>
Source§impl<'a, T: 'static> DerefMut for StoreContextMut<'a, T>
impl<'a, T: 'static> DerefMut for StoreContextMut<'a, T>
Source§impl<'a, T: 'static> From<StoreContextMut<'a, T>> for StoreContextMut<'a, T>
impl<'a, T: 'static> From<StoreContextMut<'a, T>> for StoreContextMut<'a, T>
Source§fn from(inner: StoreContextMut<'a, T>) -> Self
fn from(inner: StoreContextMut<'a, T>) -> Self
Source§impl<'a, T: 'static> From<StoreContextMut<'a, T>> for StoreContextMut<'a, T>
impl<'a, T: 'static> From<StoreContextMut<'a, T>> for StoreContextMut<'a, T>
Source§fn from(wrapper: StoreContextMut<'a, T>) -> Self
fn from(wrapper: StoreContextMut<'a, T>) -> Self
Source§impl<'a, T: 'static> RefCast for StoreContextMut<'a, T>
impl<'a, T: 'static> RefCast for StoreContextMut<'a, T>
Source§impl<'a, T: 'static> WasmStoreContext<'a, T, Engine> for StoreContextMut<'a, T>
impl<'a, T: 'static> WasmStoreContext<'a, T, Engine> for StoreContextMut<'a, T>
Source§impl<'a, T: 'static> WasmStoreContextMut<'a, T, Engine> for StoreContextMut<'a, T>
impl<'a, T: 'static> WasmStoreContextMut<'a, T, Engine> for StoreContextMut<'a, T>
Auto Trait Implementations§
impl<'a, T> Freeze for StoreContextMut<'a, T>
impl<'a, T> !RefUnwindSafe for StoreContextMut<'a, T>
impl<'a, T> Send for StoreContextMut<'a, T>where
T: Send,
impl<'a, T> Sync for StoreContextMut<'a, T>where
T: Sync,
impl<'a, T> Unpin for StoreContextMut<'a, T>
impl<'a, T> !UnwindSafe for StoreContextMut<'a, T>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more