[][src]Struct wit_walrus::Implements

pub struct Implements { /* fields omitted */ }

Methods

impl Implements[src]

pub fn get(&self, id: ImplementId) -> &Implement[src]

Gets a reference to an implement given its id

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

Gets a reference to an implement given its id

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

Get a shared reference to this section's implements.

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

Get mutable references to this section's implements.

pub fn add(
    &mut self,
    adapter_func: FuncId,
    core_func: FunctionId
) -> ImplementId
[src]

Adds a new implement to this section

Trait Implementations

impl Default for Implements[src]

impl Debug for Implements[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 = !

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]