[−][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 instruction.
Fields of Call
function_index: usizeThe function index.
The call-export instruction.
Fields of CallExport
export_name: &'input strThe exported function name.
The read-utf8 instruction.
The write-utf8 instruction.
Fields of WriteUtf8
allocator_name: &'input strThe allocator function name.
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<'input> Debug for Instruction<'input>[src]
impl<'a> Parse<'a> for Instruction<'a>[src]
impl<'input> PartialEq<Instruction<'input>> for Instruction<'input>[src]
fn eq(&self, other: &Instruction<'input>) -> bool[src]
fn ne(&self, other: &Instruction<'input>) -> bool[src]
impl<'input> StructuralPartialEq for Instruction<'input>[src]
impl<'_, W> ToBytes<W> for Instruction<'_> where
W: Write, [src]
W: Write,
Encode an Instruction into bytes.
Decoder is decoders::binary::instruction.
impl<'input, '_> ToString for &'_ Instruction<'input>[src]
Encode an Instruction into a string.
Auto Trait Implementations
impl<'input> RefUnwindSafe for Instruction<'input>
impl<'input> Send for Instruction<'input>
impl<'input> Sync for Instruction<'input>
impl<'input> Unpin for Instruction<'input>
impl<'input> UnwindSafe for Instruction<'input>
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>,