[][src]Struct walrus::ModuleElements

pub struct ModuleElements { /* fields omitted */ }

All element segments of a wasm module, used to initialize anyfunc tables, used as function pointers.

Methods

impl ModuleElements[src]

pub fn get(&self, id: ElementId) -> &Element[src]

Get an element associated with an ID

pub fn get_mut(&mut self, id: ElementId) -> &mut Element[src]

Get an element associated with an ID

pub fn iter(
    &self
) -> impl Iterator<Item = &Element>
[src]

Get a shared reference to this module's passive elements.

Trait Implementations

impl Default for ModuleElements[src]

impl Debug for ModuleElements[src]

Auto Trait Implementations

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 = !

🔬 This is a nightly-only experimental API. (try_from)

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.