[][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 delete(&mut self, id: ElementId)[src]

Delete an elements entry from this module.

It is up to you to ensure that all references to this deleted element are removed.

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, U> Into<U> for T where
    U: From<T>, 
[src]

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

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

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

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