#[repr(C)]pub struct wasmtime_store_t { /* private fields */ }
Expand description
Representation of a Store
for wasmtime.h
This notably tries to move more
burden of aliasing on the caller rather than internally, allowing for a more
raw representation of contexts and such that requires less unsafe
in the
implementation.
Note that this notably carries WasmtimeStoreData
as a payload which allows
storing foreign data and configuring WASI as well.
Auto Trait Implementations§
impl Freeze for wasmtime_store_t
impl !RefUnwindSafe for wasmtime_store_t
impl Send for wasmtime_store_t
impl Sync for wasmtime_store_t
impl Unpin for wasmtime_store_t
impl !UnwindSafe for wasmtime_store_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
Mutably borrows from an owned value. Read more