Enum wasmer_interface_types_fl::interpreter::Instruction [−][src]
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: u32The function index.
The s8.from_i32 instruction.
The s8.from_i64 instruction.
The s16.from_i32 instruction.
The s16.from_i64 instruction.
The s32.from_i32 instruction.
The s32.from_i64 instruction.
The s64.from_i32 instruction.
The s64.from_i64 instruction.
The i32.from_s8 instruction.
The i32.from_s16 instruction.
The i32.from_s32 instruction.
The i32.from_s64 instruction.
The i64.from_s8 instruction.
The i64.from_s16 instruction.
The i64.from_s32 instruction.
The i64.from_s64 instruction.
The u8.from_i32 instruction.
The u8.from_i64 instruction.
The u16.from_i32 instruction.
The u16.from_i64 instruction.
The u32.from_i32 instruction.
The u32.from_i64 instruction.
The u64.from_i32 instruction.
The u64.from_i64 instruction.
The i32.from_u8 instruction.
The i32.from_u16 instruction.
The i32.from_u32 instruction.
The i32.from_u64 instruction.
The i64.from_u8 instruction.
The i64.from_u16 instruction.
The i64.from_u32 instruction.
The i64.from_u64 instruction.
The string.lift_memory instruction.
The string.lower_memory instruction.
The string.size instruction.
The array.lift_memory instruction.
Fields of ArrayLiftMemory
value_type: ITypeArray value type.
The array.lower_memory instruction.
Fields of ArrayLowerMemory
value_type: ITypeArray value type.
The record.lift_memory instruction.
Fields of RecordLiftMemory
record_type_id: u32The type index of the record.
The record.lower_memory instruction.
Fields of RecordLowerMemory
record_type_id: u32The type index of the record.
The dup instructions.
The swap instructions.
Trait Implementations
impl Clone for Instruction[src]
fn clone(&self) -> Instruction[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for Instruction[src]
impl<'de> Deserialize<'de> for Instruction[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
impl Eq for Instruction[src]
impl Hash for Instruction[src]
fn hash<__H: Hasher>(&self, state: &mut __H)[src]
pub fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
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 Serialize for Instruction[src]
fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error> where
__S: Serializer, [src]
__S: Serializer,
impl StructuralEq for Instruction[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,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
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.
pub 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>,