Enum Instruction

Source
pub enum Instruction<'a> {
Show 45 variants ArgGet(Index<'a>), CallCore(Index<'a>), MemoryToString(MemoryToString<'a>), StringToMemory(StringToMemory<'a>), CallAdapter(Index<'a>), DeferCallCore(Index<'a>), I32ToS8, I32ToS8X, I32ToU8, I32ToS16, I32ToS16X, I32ToU16, I32ToS32, I32ToU32, I32ToS64, I32ToU64, I64ToS8, I64ToS8X, I64ToU8, I64ToS16, I64ToS16X, I64ToU16, I64ToS32, I64ToS32X, I64ToU32, I64ToS64, I64ToU64, S8ToI32, U8ToI32, S16ToI32, U16ToI32, S32ToI32, U32ToI32, S64ToI32, S64ToI32X, U64ToI32, U64ToI32X, S8ToI64, U8ToI64, S16ToI64, U16ToI64, S32ToI64, U32ToI64, S64ToI64, U64ToI64,
}
Expand description

List of instructions in adapter functions.

Variants§

§

ArgGet(Index<'a>)

§

CallCore(Index<'a>)

§

MemoryToString(MemoryToString<'a>)

§

StringToMemory(StringToMemory<'a>)

§

CallAdapter(Index<'a>)

§

DeferCallCore(Index<'a>)

§

I32ToS8

§

I32ToS8X

§

I32ToU8

§

I32ToS16

§

I32ToS16X

§

I32ToU16

§

I32ToS32

§

I32ToU32

§

I32ToS64

§

I32ToU64

§

I64ToS8

§

I64ToS8X

§

I64ToU8

§

I64ToS16

§

I64ToS16X

§

I64ToU16

§

I64ToS32

§

I64ToS32X

§

I64ToU32

§

I64ToS64

§

I64ToU64

§

S8ToI32

§

U8ToI32

§

S16ToI32

§

U16ToI32

§

S32ToI32

§

U32ToI32

§

S64ToI32

§

S64ToI32X

§

U64ToI32

§

U64ToI32X

§

S8ToI64

§

U8ToI64

§

S16ToI64

§

U16ToI64

§

S32ToI64

§

U32ToI64

§

S64ToI64

§

U64ToI64

Trait Implementations§

Source§

impl<'a> Parse<'a> for Instruction<'a>

Source§

fn parse(parser: Parser<'a>) -> Result<Self>

Attempts to parse Self from parser, returning an error if it could not be parsed. Read more

Auto Trait Implementations§

§

impl<'a> Freeze for Instruction<'a>

§

impl<'a> RefUnwindSafe for Instruction<'a>

§

impl<'a> Send for Instruction<'a>

§

impl<'a> Sync for Instruction<'a>

§

impl<'a> Unpin for Instruction<'a>

§

impl<'a> UnwindSafe for Instruction<'a>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.