pub struct WasiEnv {
pub state: Arc<WasiState>,
/* private fields */
}
Expand description
The environment provided to the WASI imports.
Fields§
§state: Arc<WasiState>
Shared state of the WASI system. Manages all the data that the executing WASI program can see.
Implementations§
Source§impl WasiEnv
impl WasiEnv
Sourcepub fn new(state: WasiState) -> Self
pub fn new(state: WasiState) -> Self
Create a new WasiEnv from a WasiState (memory will be set to None)
Sourcepub fn runtime(&self) -> &dyn WasiRuntimeImplementation
pub fn runtime(&self) -> &dyn WasiRuntimeImplementation
Returns a copy of the current runtime implementation for this environment
Sourcepub fn set_runtime<R>(&mut self, runtime: R)
pub fn set_runtime<R>(&mut self, runtime: R)
Overrides the runtime implementation for this environment
Sourcepub fn current_thread_id(&self) -> WasiThreadId
pub fn current_thread_id(&self) -> WasiThreadId
Returns the current thread ID
Sourcepub fn new_thread(&self) -> WasiThread
pub fn new_thread(&self) -> WasiThread
Creates a new thread only this wasi environment
Sourcepub fn memory_clone(&self) -> Option<Memory>
pub fn memory_clone(&self) -> Option<Memory>
Copy the lazy reference so that when it’s initialized during the export phase, all the other references get a copy of it
pub fn yield_now(&self) -> Result<(), WasiError>
pub fn sleep(&self, duration: Duration) -> Result<(), WasiError>
Sourcepub fn net(&self) -> &dyn VirtualNetworking
pub fn net(&self) -> &dyn VirtualNetworking
Accesses the virtual networking implementation
Sourcepub fn bus(&self) -> &dyn VirtualBus
pub fn bus(&self) -> &dyn VirtualBus
Accesses the virtual bus implementation
Sourcepub fn set_memory(&mut self, memory: Memory)
pub fn set_memory(&mut self, memory: Memory)
Set the memory of the WasiEnv (can only be done once)
Sourcepub fn memory_view<'a>(&'a self, store: &'a impl AsStoreRef) -> MemoryView<'a>
pub fn memory_view<'a>(&'a self, store: &'a impl AsStoreRef) -> MemoryView<'a>
Providers safe access to the memory (it must be initialized before it can be used)