[][src]Struct walrus::ModuleExports

pub struct ModuleExports { /* fields omitted */ }

The set of exports in a module.

Methods

impl ModuleExports[src]

pub fn get(&self, id: ExportId) -> &Export[src]

Gets a reference to an export given its id

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

Gets a reference to an export given its id

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

Delete an export entry from this module.

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

Get a shared reference to this module's exports.

pub fn add(&mut self, name: &str, item: impl Into<ExportItem>) -> ExportId[src]

Add a new export to this module

Trait Implementations

impl Default for ModuleExports[src]

impl Debug for ModuleExports[src]

Auto Trait Implementations

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> 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.

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