[−][src]Struct wasmer_runtime_core::vm::Ctx
The context of the currently running WebAssembly instance.
Fields
module: *const ModuleInnerdata: *mut c_voiddata_finalizer: Option<fn(data: *mut c_void)>Methods
impl Ctx[src]
pub fn memory(&self, mem_index: u32) -> &Memory[src]
This exposes the specified memory of the WebAssembly instance as a immutable slice.
WebAssembly will soon support multiple linear memories, so this forces the user to specify.
Usage:
fn read_memory(ctx: &Ctx) -> u8 { let first_memory = ctx.memory(0); // Read the first byte of that linear memory. first_memory.view()[0].get() }
pub unsafe fn borrow_symbol_map(&self) -> &Option<HashMap<u32, String>>[src]
Gives access to the emscripten symbol map, used for debugging
Trait Implementations
Auto Trait Implementations
Blanket Implementations
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,