[][src]Struct wasm_bindgen_externref_xform::Context

pub struct Context { /* fields omitted */ }

State of the externref pass, used to collect information while bindings are generated and used eventually to actually execute the entire pass.

Implementations

impl Context[src]

pub fn prepare(&mut self, module: &mut Module) -> Result<(), Error>[src]

Executed first very early over a wasm module, used to learn about how large the function table is so we know what indexes to hand out when we're appending entries.

pub fn import_xform(
    &mut self,
    id: ImportId,
    externref: &[(usize, bool)],
    ret_externref: bool
) -> &mut Self
[src]

Store information about an imported function that needs to be transformed. The actual transformation happens later during run.

pub fn export_xform(
    &mut self,
    id: ExportId,
    externref: &[(usize, bool)],
    ret_externref: bool
) -> &mut Self
[src]

Store information about an exported function that needs to be transformed. The actual transformation happens later during run.

pub fn table_element_xform(
    &mut self,
    idx: u32,
    externref: &[(usize, bool)],
    ret_externref: bool
) -> Option<u32>
[src]

Store information about a function pointer that needs to be transformed. The actual transformation happens later during run. Returns an index that the new wrapped function pointer will be injected at.

pub fn run(&mut self, module: &mut Module) -> Result<Meta, Error>[src]

Trait Implementations

impl Default for Context[src]

Auto Trait Implementations

impl RefUnwindSafe for Context

impl Send for Context

impl Sync for Context

impl Unpin for Context

impl UnwindSafe for Context

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.