[−][src]Enum wasmer_interface_types::interpreter::Instruction
Represents all the possible WIT instructions.
Variants
The arg.get instruction.
Fields of ArgumentGet
index: u32The argument index.
The call-core instruction.
Fields of CallCore
function_index: usizeThe function index.
The memory-to-string instruction.
The string-to-memory instruction.
Fields of StringToMemory
allocator_index: u32The allocator function index.
The i32-to-s8, instruction.
The i32-to-s8x, instruction.
The i32-to-u8, instruction.
The i32-to-s16, instruction.
The i32-to-s16x, instruction.
The i32-to-u16, instruction.
The i32-to-s32, instruction.
The i32-to-u32, instruction.
The i32-to-s64, instruction.
The i32-to-u64, instruction.
The i64-to-s8, instruction.
The i64-to-s8x, instruction.
The i64-to-u8, instruction.
The i64-to-s16, instruction.
The i64-to-s16x, instruction.
The i64-to-u16, instruction.
The i64-to-s32, instruction.
The i64-to-s32x, instruction.
The i64-to-u32, instruction.
The i64-to-s64, instruction.
The i64-to-u64, instruction.
The s8-to-i32, instruction.
The u8-to-i32, instruction.
The s16-to-i32, instruction.
The u16-to-i32, instruction.
The s32-to-i32, instruction.
The u32-to-i32, instruction.
The s64-to-i32, instruction.
The s64-to-i32x, instruction.
The u64-to-i32, instruction.
The u64-to-i32x, instruction.
The s8-to-i64, instruction.
The u8-to-i64, instruction.
The s16-to-i64, instruction.
The u16-to-i64, instruction.
The s32-to-i64, instruction.
The u32-to-i64, instruction.
The s64-to-i64, instruction.
The u64-to-i64, instruction.
Trait Implementations
impl Debug for Instruction[src]
impl<'a> Parse<'a> for Instruction[src]
impl PartialEq<Instruction> for Instruction[src]
fn eq(&self, other: &Instruction) -> bool[src]
fn ne(&self, other: &Instruction) -> bool[src]
impl StructuralPartialEq for Instruction[src]
impl<W> ToBytes<W> for Instruction where
W: Write, [src]
W: Write,
Encode an Instruction into bytes.
Decoder is decoders::binary::instruction.
impl<'_> ToString for &'_ Instruction[src]
Encode an Instruction into a string.
Auto Trait Implementations
impl RefUnwindSafe for Instruction
impl Send for Instruction
impl Sync for Instruction
impl Unpin for Instruction
impl UnwindSafe for Instruction
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,