[][src]Enum wit_text::Implementation

pub enum Implementation<'a> {
    ByIndex(Index<'a>),
    Inline {
        ty: TypeUse<'a>,
        instrs: Instructions<'a>,
    },
}

Different ways to specify an implementation

Variants

ByIndex(Index<'a>)

A specification using an index

Inline

An inline definition of what's being implemented

Fields of Inline

ty: TypeUse<'a>

The type that this function has

instrs: Instructions<'a>

Body of the implementation

Auto Trait Implementations

impl<'a> Send for Implementation<'a>

impl<'a> Sync for Implementation<'a>

impl<'a> Unpin for Implementation<'a>

impl<'a> UnwindSafe for Implementation<'a>

impl<'a> RefUnwindSafe for Implementation<'a>

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]