[][src]Struct wit_walrus::Funcs

pub struct Funcs { /* fields omitted */ }

Implementations

impl Funcs[src]

pub fn get(&self, id: FuncId) -> &Func[src]

Gets a reference to an func given its id

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

Gets a reference to an func given its id

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

Get a shared reference to this section's funcs.

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

Get mutable references to this section's funcs.

pub fn add_import(&mut self, ty: TypeId, import: ImportId) -> FuncId[src]

Create a new externally defined, imported function.

pub fn add_local(&mut self, ty: TypeId, instrs: Vec<Instruction>) -> FuncId[src]

Adds a new local func to this section

Trait Implementations

impl Debug for Funcs[src]

impl Default for Funcs[src]

Auto Trait Implementations

impl RefUnwindSafe for Funcs

impl Send for Funcs

impl Sync for Funcs

impl Unpin for Funcs

impl UnwindSafe for Funcs

Blanket Implementations

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

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

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

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.