[−][src]Enum wasm_encoder::Instruction
WebAssembly instructions.
Variants (Non-exhaustive)
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Block(BlockType)
Loop(BlockType)
If(BlockType)
Br(u32)
BrIf(u32)
Call(u32)
LocalGet(u32)
LocalSet(u32)
LocalTee(u32)
GlobalGet(u32)
GlobalSet(u32)
I32Load(MemArg)
I64Load(MemArg)
F32Load(MemArg)
F64Load(MemArg)
I32Load8_S(MemArg)
I32Load8_U(MemArg)
I32Load16_S(MemArg)
I32Load16_U(MemArg)
I64Load8_S(MemArg)
I64Load8_U(MemArg)
I64Load16_S(MemArg)
I64Load16_U(MemArg)
I64Load32_S(MemArg)
I64Load32_U(MemArg)
I32Store(MemArg)
I64Store(MemArg)
F32Store(MemArg)
F64Store(MemArg)
I32Store8(MemArg)
I32Store16(MemArg)
I64Store8(MemArg)
I64Store16(MemArg)
I64Store32(MemArg)
MemorySize(u32)
MemoryGrow(u32)
DataDrop(u32)
MemoryFill(u32)
I32Const(i32)
I64Const(i64)
F32Const(f32)
F64Const(f64)
TypedSelect(ValType)
RefNull(ValType)
RefFunc(u32)
Fields of ElemDrop
segment: u32
Fields of TableFill
table: u32
Fields of TableSet
table: u32
Fields of TableGet
table: u32
Fields of TableGrow
table: u32
Fields of TableSize
table: u32
Trait Implementations
impl<'a> Clone for Instruction<'a>
[src]
pub fn clone(&self) -> Instruction<'a>
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<'a> Debug for Instruction<'a>
[src]
Auto Trait Implementations
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
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> 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>,