[][src]Struct wasm_bindgen_anyref_xform::Context

pub struct Context {
    pub enabled: bool,
    // some fields omitted
}

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

Fields

enabled: bool

Methods

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,
    module: &str,
    name: &str,
    anyref: &[(usize, bool)],
    ret_anyref: 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,
    name: &str,
    anyref: &[(usize, bool)],
    ret_anyref: 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,
    anyref: &[(usize, bool)],
    ret_anyref: bool
) -> 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 anyref_table_id(&self) -> TableId[src]

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

Trait Implementations

impl Default for Context[src]

Auto Trait Implementations

impl Send for Context

impl Sync for Context

Blanket Implementations

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

impl<T> From for 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.