[][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 iter_mut(&mut self) -> impl Iterator<Item = &mut Export>[src]

Get a mutable 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> From<T> for T[src]

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

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

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