[][src]Struct wit_walrus::Exports

pub struct Exports { /* fields omitted */ }

Methods

impl Exports[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 section's exports.

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

Get mutable references to this section's exports.

pub fn add(&mut self, name: &str, func: FuncId) -> ExportId[src]

Adds a new export to this section

Trait Implementations

impl Default for Exports[src]

impl Debug for Exports[src]

Auto Trait Implementations

impl Send for Exports

impl Sync for Exports

impl Unpin for Exports

impl UnwindSafe for Exports

impl RefUnwindSafe for Exports

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

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]