[][src]Struct wit_walrus::Imports

pub struct Imports { /* fields omitted */ }

Methods

impl Imports[src]

pub fn get(&self, id: ImportId) -> &Import[src]

Gets a reference to an import given its id

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

Gets a reference to an import given its id

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

Get a shared reference to this section's imports.

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

Get mutable references to this section's imports.

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

Adds a new import to this section

Trait Implementations

impl Default for Imports[src]

impl Debug for Imports[src]

Auto Trait Implementations

impl Send for Imports

impl Sync for Imports

impl Unpin for Imports

impl UnwindSafe for Imports

impl RefUnwindSafe for Imports

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]