[][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 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

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

Get a shared reference to this module's root export

Exports are "root exports" by default, unless they're blacklisted with the remove_root method.

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

Removes an id from the set of "root exports" returned from iter_roots.

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

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

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

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