[][src]Struct wasmer_runtime::Ctx

#[repr(C)]
pub struct Ctx { pub data: *mut c_void, pub data_finalizer: Option<fn(*mut c_void)>, // some fields omitted }

The context of the currently running WebAssembly instance.

Fields

data: *mut c_voiddata_finalizer: Option<fn(*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, BuildHasherDefault<FxHasher>>>
[src]

Gives access to the emscripten symbol map, used for debugging

Trait Implementations

impl Debug for Ctx[src]

Auto Trait Implementations

impl !Send for Ctx

impl !Sync for Ctx

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Erased for T