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
Available on crate feature runtime only.
pub fn data(&self) -> &T
runtime only.Access the underlying data owned by this Store.
Same as Store::data.
Sourcepub fn data_mut(&mut self) -> &mut T
Available on crate feature runtime only.
pub fn data_mut(&mut self) -> &mut T
runtime only.Access the underlying data owned by this Store.
Same as Store::data_mut.
Sourcepub fn engine(&self) -> &Engine
Available on crate feature runtime only.
pub fn engine(&self) -> &Engine
runtime only.Returns the underlying Engine this store is connected to.
Sourcepub fn gc(&mut self)
Available on crate features runtime and gc only.
pub fn gc(&mut self)
runtime and gc only.Perform garbage collection of ExternRefs.
Same as Store::gc.
This method is only available when the gc Cargo feature is enabled.
Sourcepub async fn gc_async(&mut self)where
T: Send,
Available on crate features async and gc and runtime only.
pub async fn gc_async(&mut self)where
T: Send,
async and gc and runtime only.Perform garbage collection of ExternRefs.
Same as Store::gc.
This method is only available when the gc Cargo feature is enabled.
Sourcepub fn get_fuel(&self) -> Result<u64>
Available on crate feature runtime only.
pub fn get_fuel(&self) -> Result<u64>
runtime only.Returns remaining fuel in this store.
For more information see Store::get_fuel
Sourcepub fn set_fuel(&mut self, fuel: u64) -> Result<()>
Available on crate feature runtime only.
pub fn set_fuel(&mut self, fuel: u64) -> Result<()>
runtime only.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<()>
Available on crate feature runtime only.
pub fn fuel_async_yield_interval(&mut self, interval: Option<u64>) -> Result<()>
runtime only.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)
Available on crate feature runtime only.
pub fn set_epoch_deadline(&mut self, ticks_beyond_current: u64)
runtime only.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)
Available on crate feature runtime only.
pub fn epoch_deadline_trap(&mut self)
runtime only.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)
Available on crate features runtime and async only.
pub fn epoch_deadline_async_yield_and_update(&mut self, delta: u64)
runtime and async only.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.
Trait Implementations§
Source§impl<T> AsContext for StoreContextMut<'_, T>
Available on crate feature runtime only.
impl<T> AsContext for StoreContextMut<'_, T>
runtime only.Source§fn as_context(&self) -> StoreContext<'_, T>
fn as_context(&self) -> StoreContext<'_, T>
Source§impl<T> AsContextMut for StoreContextMut<'_, T>
Available on crate feature runtime only.
impl<T> AsContextMut for StoreContextMut<'_, T>
runtime only.Source§fn as_context_mut(&mut self) -> StoreContextMut<'_, T>
fn as_context_mut(&mut self) -> StoreContextMut<'_, T>
Source§impl<'a, T: AsContextMut> From<&'a mut T> for StoreContextMut<'a, T::Data>
Available on crate feature runtime only.
impl<'a, T: AsContextMut> From<&'a mut T> for StoreContextMut<'a, T::Data>
runtime only.Source§impl<'a, T> From<StoreContextMut<'a, T>> for StoreContext<'a, T>
Available on crate feature runtime only.
impl<'a, T> From<StoreContextMut<'a, T>> for StoreContext<'a, T>
runtime only.Source§fn from(store: StoreContextMut<'a, T>) -> StoreContext<'a, T>
fn from(store: StoreContextMut<'a, T>) -> StoreContext<'a, T>
Source§impl<I, T> Index<I> for StoreContextMut<'_, T>where
StoreData: Index<I>,
Available on crate feature runtime only.
impl<I, T> Index<I> for StoreContextMut<'_, T>where
StoreData: Index<I>,
runtime only.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