Struct wasmer_wasix::syscalls::Store
pub(crate) struct Store {
pub(crate) inner: Box<StoreInner>,
}
Expand description
The store represents all global state that can be manipulated by WebAssembly programs. It consists of the runtime representation of all instances of functions, tables, memories, and globals that have been allocated during the lifetime of the abstract machine.
The Store
is tied to the underlying [Engine
] that is — among many things — used to
compile the Wasm bytes into a valid module artifact.
For more informations, check out the [related WebAssembly specification] [related WebAssembly specification]: https://webassembly.github.io/spec/core/exec/runtime.html#store
Fields§
§inner: Box<StoreInner>
Implementations§
§impl Store
impl Store
pub fn set_trap_handler(
&mut self,
handler: Option<Box<dyn Fn(i32, *const siginfo_t, *const c_void) -> bool + Send + Sync>>,
)
pub fn set_trap_handler( &mut self, handler: Option<Box<dyn Fn(i32, *const siginfo_t, *const c_void) -> bool + Send + Sync>>, )
Set the [TrapHandlerFn
] for this store.
§Note
Not every implementor allows changing the trap handler. In those store that don’t allow it, this function has no effect.
pub fn engine(&self) -> &Engine
pub fn engine(&self) -> &Engine
Returns the [Engine
].
pub fn engine_mut(&mut self) -> &mut Engine
pub fn engine_mut(&mut self) -> &mut Engine
Returns mutable reference to [Engine
].
pub fn same(a: &Store, b: &Store) -> bool
pub fn same(a: &Store, b: &Store) -> bool
Checks whether two stores are identical. A store is considered equal to another store if both have the same engine.
pub fn id(&self) -> StoreId
pub fn id(&self) -> StoreId
Returns the ID of this store
Trait Implementations§
§impl AsEngineRef for Store
impl AsEngineRef for Store
§fn as_engine_ref(&self) -> EngineRef<'_>
fn as_engine_ref(&self) -> EngineRef<'_>
EngineRef
] pointing to the underlying context.§fn maybe_as_store(&self) -> Option<StoreRef<'_>>
fn maybe_as_store(&self) -> Option<StoreRef<'_>>
StoreRef
]. Read more§impl AsStoreMut for Store
impl AsStoreMut for Store
§fn as_store_mut(&mut self) -> StoreMut<'_>
fn as_store_mut(&mut self) -> StoreMut<'_>
StoreMut
pointing to the underlying context.§fn objects_mut(&mut self) -> &mut StoreObjects
fn objects_mut(&mut self) -> &mut StoreObjects
§impl AsStoreRef for Store
impl AsStoreRef for Store
§fn as_store_ref(&self) -> StoreRef<'_>
fn as_store_ref(&self) -> StoreRef<'_>
StoreRef
pointing to the underlying context.impl Send for Store
impl Sync for Store
Auto Trait Implementations§
impl Freeze for Store
impl !RefUnwindSafe for Store
impl Unpin for Store
impl !UnwindSafe for Store
Blanket Implementations§
§impl<T> ArchivePointee for T
impl<T> ArchivePointee for T
§type ArchivedMetadata = ()
type ArchivedMetadata = ()
§fn pointer_metadata(
_: &<T as ArchivePointee>::ArchivedMetadata,
) -> <T as Pointee>::Metadata
fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata, ) -> <T as Pointee>::Metadata
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
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