[][src]Struct walrus::ModuleData

pub struct ModuleData { /* fields omitted */ }

All passive data sections of a wasm module, used to initialize memories via various instructions.

Methods

impl ModuleData[src]

pub fn get(&self, id: DataId) -> &Data[src]

Get an element associated with an ID

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

Get an element associated with an ID

pub fn delete(&mut self, id: DataId)[src]

Delete a passive data segment from this module.

It is up to you to ensure that all references to the deleted segment are removed, eg memory.init and data.drop expressions.

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

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

pub fn add(&mut self, value: Vec<u8>) -> DataId[src]

Adds a new passive data segment with the specified contents

Trait Implementations

impl Default for ModuleData[src]

impl Debug for ModuleData[src]

Auto Trait Implementations

impl Send for ModuleData

impl Sync for ModuleData

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.