Trait wasm_core::executor::GlobalStateProvider
[−]
[src]
pub trait GlobalStateProvider {
fn get_memory(&self) -> &[u8];
fn get_memory_mut(&mut self) -> &mut [u8];
fn resolve(&self, module: &str, field: &str) -> Option<NativeEntry>;
}
Required Methods
fn get_memory(&self) -> &[u8]
fn get_memory_mut(&mut self) -> &mut [u8]
fn resolve(&self, module: &str, field: &str) -> Option<NativeEntry>
Implementors
impl GlobalStateProvider for RuntimeInfo