pub struct StoreContextMut<'a, T>(/* private fields */);
Expand description
A temporary handle to a &mut Store<T>
.
This type is suitable for AsContextMut
or AsContext
trait bounds on
methods if desired. For more information, see Store
.
Implementations§
Source§impl<'a, T> StoreContextMut<'a, T>
impl<'a, T> 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 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
.
Sourcepub fn epoch_deadline_async_yield_and_update(&mut self, delta: u64)
pub fn epoch_deadline_async_yield_and_update(&mut self, delta: u64)
Configures epoch-deadline expiration to yield to the async caller and the update the deadline.
For more information see
Store::epoch_deadline_async_yield_and_update
.