#[repr(u8)]
pub enum ArchivedInstruction{
Show 206 variants BrLabel(Archived<LabelAddr>), I64XorConstRotl(Archived<i64>), LocalTeeGet(Archived<LocalAddr>, Archived<LocalAddr>), LocalGet2(Archived<LocalAddr>, Archived<LocalAddr>), LocalGet3(Archived<LocalAddr>, Archived<LocalAddr>, Archived<LocalAddr>), LocalGetSet(Archived<LocalAddr>, Archived<LocalAddr>), Unreachable, Nop, Block(Archived<BlockArgs>, Archived<u32>), Loop(Archived<BlockArgs>, Archived<u32>), If(Archived<BlockArgsPacked>, Archived<u32>, Archived<u32>), Else(Archived<u32>), EndBlockFrame, EndFunc, Br(Archived<LabelAddr>), BrIf(Archived<LabelAddr>), BrTable(Archived<u32>, Archived<u32>), Return, Call(Archived<FuncAddr>), CallIndirect(Archived<TypeAddr>, Archived<TableAddr>), Drop, Select(Archived<Option<ValType>>), LocalGet(Archived<LocalAddr>), LocalSet(Archived<LocalAddr>), LocalTee(Archived<LocalAddr>), GlobalGet(Archived<GlobalAddr>), GlobalSet(Archived<GlobalAddr>), I32Load { offset: Archived<u64>, mem_addr: Archived<MemAddr>, }, I64Load { offset: Archived<u64>, mem_addr: Archived<MemAddr>, }, F32Load { offset: Archived<u64>, mem_addr: Archived<MemAddr>, }, F64Load { offset: Archived<u64>, mem_addr: Archived<MemAddr>, }, I32Load8S { offset: Archived<u64>, mem_addr: Archived<MemAddr>, }, I32Load8U { offset: Archived<u64>, mem_addr: Archived<MemAddr>, }, I32Load16S { offset: Archived<u64>, mem_addr: Archived<MemAddr>, }, I32Load16U { offset: Archived<u64>, mem_addr: Archived<MemAddr>, }, I64Load8S { offset: Archived<u64>, mem_addr: Archived<MemAddr>, }, I64Load8U { offset: Archived<u64>, mem_addr: Archived<MemAddr>, }, I64Load16S { offset: Archived<u64>, mem_addr: Archived<MemAddr>, }, I64Load16U { offset: Archived<u64>, mem_addr: Archived<MemAddr>, }, I64Load32S { offset: Archived<u64>, mem_addr: Archived<MemAddr>, }, I64Load32U { offset: Archived<u64>, mem_addr: Archived<MemAddr>, }, I32Store { offset: Archived<u64>, mem_addr: Archived<MemAddr>, }, I64Store { offset: Archived<u64>, mem_addr: Archived<MemAddr>, }, F32Store { offset: Archived<u64>, mem_addr: Archived<MemAddr>, }, F64Store { offset: Archived<u64>, mem_addr: Archived<MemAddr>, }, I32Store8 { offset: Archived<u64>, mem_addr: Archived<MemAddr>, }, I32Store16 { offset: Archived<u64>, mem_addr: Archived<MemAddr>, }, I64Store8 { offset: Archived<u64>, mem_addr: Archived<MemAddr>, }, I64Store16 { offset: Archived<u64>, mem_addr: Archived<MemAddr>, }, I64Store32 { offset: Archived<u64>, mem_addr: Archived<MemAddr>, }, MemorySize(Archived<MemAddr>, Archived<u8>), MemoryGrow(Archived<MemAddr>, Archived<u8>), I32Const(Archived<i32>), I64Const(Archived<i64>), F32Const(Archived<f32>), F64Const(Archived<f64>), RefNull(Archived<ValType>), RefFunc(Archived<FuncAddr>), RefIsNull, I32Eqz, I32Eq, I32Ne, I32LtS, I32LtU, I32GtS, I32GtU, I32LeS, I32LeU, I32GeS, I32GeU, I64Eqz, I64Eq, I64Ne, I64LtS, I64LtU, I64GtS, I64GtU, I64LeS, I64LeU, I64GeS, I64GeU, F32Eq, F32Ne, F32Lt, F32Gt, F32Le, F32Ge, F64Eq, F64Ne, F64Lt, F64Gt, F64Le, F64Ge, I32Clz, I32Ctz, I32Popcnt, I32Add, I32Sub, I32Mul, I32DivS, I32DivU, I32RemS, I32RemU, I32And, I32Or, I32Xor, I32Shl, I32ShrS, I32ShrU, I32Rotl, I32Rotr, I64Clz, I64Ctz, I64Popcnt, I64Add, I64Sub, I64Mul, I64DivS, I64DivU, I64RemS, I64RemU, I64And, I64Or, I64Xor, I64Shl, I64ShrS, I64ShrU, I64Rotl, I64Rotr, F32Abs, F32Neg, F32Ceil, F32Floor, F32Trunc, F32Nearest, F32Sqrt, F32Add, F32Sub, F32Mul, F32Div, F32Min, F32Max, F32Copysign, F64Abs, F64Neg, F64Ceil, F64Floor, F64Trunc, F64Nearest, F64Sqrt, F64Add, F64Sub, F64Mul, F64Div, F64Min, F64Max, F64Copysign, I32WrapI64, I32TruncF32S, I32TruncF32U, I32TruncF64S, I32TruncF64U, I32Extend8S, I32Extend16S, I64Extend8S, I64Extend16S, I64Extend32S, I64ExtendI32S, I64ExtendI32U, I64TruncF32S, I64TruncF32U, I64TruncF64S, I64TruncF64U, F32ConvertI32S, F32ConvertI32U, F32ConvertI64S, F32ConvertI64U, F32DemoteF64, F64ConvertI32S, F64ConvertI32U, F64ConvertI64S, F64ConvertI64U, F64PromoteF32, I32ReinterpretF32, I64ReinterpretF64, F32ReinterpretI32, F64ReinterpretI64, I32TruncSatF32S, I32TruncSatF32U, I32TruncSatF64S, I32TruncSatF64U, I64TruncSatF32S, I64TruncSatF32U, I64TruncSatF64S, I64TruncSatF64U, TableInit(Archived<TableAddr>, Archived<ElemAddr>), TableGet(Archived<TableAddr>), TableSet(Archived<TableAddr>), TableCopy { from: Archived<TableAddr>, to: Archived<TableAddr>, }, TableGrow(Archived<TableAddr>), TableSize(Archived<TableAddr>), TableFill(Archived<TableAddr>), MemoryInit(Archived<MemAddr>, Archived<DataAddr>), MemoryCopy(Archived<MemAddr>, Archived<MemAddr>), MemoryFill(Archived<MemAddr>), DataDrop(Archived<DataAddr>),
}
Expand description

An archived Instruction

Variants§

§

BrLabel(Archived<LabelAddr>)

Tuple Fields

§0: Archived<LabelAddr>

The archived counterpart of Instruction::BrLabel::0

The archived counterpart of Instruction::BrLabel

§

I64XorConstRotl(Archived<i64>)

Tuple Fields

§0: Archived<i64>

The archived counterpart of Instruction::I64XorConstRotl::0

The archived counterpart of Instruction::I64XorConstRotl

§

LocalTeeGet(Archived<LocalAddr>, Archived<LocalAddr>)

Tuple Fields

§0: Archived<LocalAddr>

The archived counterpart of Instruction::LocalTeeGet::0

§1: Archived<LocalAddr>

The archived counterpart of Instruction::LocalTeeGet::1

The archived counterpart of Instruction::LocalTeeGet

§

LocalGet2(Archived<LocalAddr>, Archived<LocalAddr>)

Tuple Fields

§0: Archived<LocalAddr>

The archived counterpart of Instruction::LocalGet2::0

§1: Archived<LocalAddr>

The archived counterpart of Instruction::LocalGet2::1

The archived counterpart of Instruction::LocalGet2

§

LocalGet3(Archived<LocalAddr>, Archived<LocalAddr>, Archived<LocalAddr>)

Tuple Fields

§0: Archived<LocalAddr>

The archived counterpart of Instruction::LocalGet3::0

§1: Archived<LocalAddr>

The archived counterpart of Instruction::LocalGet3::1

§2: Archived<LocalAddr>

The archived counterpart of Instruction::LocalGet3::2

The archived counterpart of Instruction::LocalGet3

§

LocalGetSet(Archived<LocalAddr>, Archived<LocalAddr>)

Tuple Fields

§0: Archived<LocalAddr>

The archived counterpart of Instruction::LocalGetSet::0

§1: Archived<LocalAddr>

The archived counterpart of Instruction::LocalGetSet::1

The archived counterpart of Instruction::LocalGetSet

§

Unreachable

The archived counterpart of Instruction::Unreachable

§

Nop

The archived counterpart of Instruction::Nop

§

Block(Archived<BlockArgs>, Archived<u32>)

Tuple Fields

§0: Archived<BlockArgs>

The archived counterpart of Instruction::Block::0

§1: Archived<u32>

The archived counterpart of Instruction::Block::1

The archived counterpart of Instruction::Block

§

Loop(Archived<BlockArgs>, Archived<u32>)

Tuple Fields

§0: Archived<BlockArgs>

The archived counterpart of Instruction::Loop::0

§1: Archived<u32>

The archived counterpart of Instruction::Loop::1

The archived counterpart of Instruction::Loop

§

If(Archived<BlockArgsPacked>, Archived<u32>, Archived<u32>)

Tuple Fields

§0: Archived<BlockArgsPacked>

The archived counterpart of Instruction::If::0

§1: Archived<u32>

The archived counterpart of Instruction::If::1

§2: Archived<u32>

The archived counterpart of Instruction::If::2

The archived counterpart of Instruction::If

§

Else(Archived<u32>)

Tuple Fields

§0: Archived<u32>

The archived counterpart of Instruction::Else::0

The archived counterpart of Instruction::Else

§

EndBlockFrame

The archived counterpart of Instruction::EndBlockFrame

§

EndFunc

The archived counterpart of Instruction::EndFunc

§

Br(Archived<LabelAddr>)

Tuple Fields

§0: Archived<LabelAddr>

The archived counterpart of Instruction::Br::0

The archived counterpart of Instruction::Br

§

BrIf(Archived<LabelAddr>)

Tuple Fields

§0: Archived<LabelAddr>

The archived counterpart of Instruction::BrIf::0

The archived counterpart of Instruction::BrIf

§

BrTable(Archived<u32>, Archived<u32>)

Tuple Fields

§0: Archived<u32>

The archived counterpart of Instruction::BrTable::0

§1: Archived<u32>

The archived counterpart of Instruction::BrTable::1

The archived counterpart of Instruction::BrTable

§

Return

The archived counterpart of Instruction::Return

§

Call(Archived<FuncAddr>)

Tuple Fields

§0: Archived<FuncAddr>

The archived counterpart of Instruction::Call::0

The archived counterpart of Instruction::Call

§

CallIndirect(Archived<TypeAddr>, Archived<TableAddr>)

Tuple Fields

§0: Archived<TypeAddr>

The archived counterpart of Instruction::CallIndirect::0

§1: Archived<TableAddr>

The archived counterpart of Instruction::CallIndirect::1

The archived counterpart of Instruction::CallIndirect

§

Drop

The archived counterpart of Instruction::Drop

§

Select(Archived<Option<ValType>>)

Tuple Fields

§0: Archived<Option<ValType>>

The archived counterpart of Instruction::Select::0

The archived counterpart of Instruction::Select

§

LocalGet(Archived<LocalAddr>)

Tuple Fields

§0: Archived<LocalAddr>

The archived counterpart of Instruction::LocalGet::0

The archived counterpart of Instruction::LocalGet

§

LocalSet(Archived<LocalAddr>)

Tuple Fields

§0: Archived<LocalAddr>

The archived counterpart of Instruction::LocalSet::0

The archived counterpart of Instruction::LocalSet

§

LocalTee(Archived<LocalAddr>)

Tuple Fields

§0: Archived<LocalAddr>

The archived counterpart of Instruction::LocalTee::0

The archived counterpart of Instruction::LocalTee

§

GlobalGet(Archived<GlobalAddr>)

Tuple Fields

§0: Archived<GlobalAddr>

The archived counterpart of Instruction::GlobalGet::0

The archived counterpart of Instruction::GlobalGet

§

GlobalSet(Archived<GlobalAddr>)

Tuple Fields

§0: Archived<GlobalAddr>

The archived counterpart of Instruction::GlobalSet::0

The archived counterpart of Instruction::GlobalSet

§

I32Load

Fields

§offset: Archived<u64>

The archived counterpart of Instruction::I32Load::offset

§mem_addr: Archived<MemAddr>

The archived counterpart of Instruction::I32Load::mem_addr

The archived counterpart of Instruction::I32Load

§

I64Load

Fields

§offset: Archived<u64>

The archived counterpart of Instruction::I64Load::offset

§mem_addr: Archived<MemAddr>

The archived counterpart of Instruction::I64Load::mem_addr

The archived counterpart of Instruction::I64Load

§

F32Load

Fields

§offset: Archived<u64>

The archived counterpart of Instruction::F32Load::offset

§mem_addr: Archived<MemAddr>

The archived counterpart of Instruction::F32Load::mem_addr

The archived counterpart of Instruction::F32Load

§

F64Load

Fields

§offset: Archived<u64>

The archived counterpart of Instruction::F64Load::offset

§mem_addr: Archived<MemAddr>

The archived counterpart of Instruction::F64Load::mem_addr

The archived counterpart of Instruction::F64Load

§

I32Load8S

Fields

§offset: Archived<u64>

The archived counterpart of Instruction::I32Load8S::offset

§mem_addr: Archived<MemAddr>

The archived counterpart of Instruction::I32Load8S::mem_addr

The archived counterpart of Instruction::I32Load8S

§

I32Load8U

Fields

§offset: Archived<u64>

The archived counterpart of Instruction::I32Load8U::offset

§mem_addr: Archived<MemAddr>

The archived counterpart of Instruction::I32Load8U::mem_addr

The archived counterpart of Instruction::I32Load8U

§

I32Load16S

Fields

§offset: Archived<u64>

The archived counterpart of Instruction::I32Load16S::offset

§mem_addr: Archived<MemAddr>

The archived counterpart of Instruction::I32Load16S::mem_addr

The archived counterpart of Instruction::I32Load16S

§

I32Load16U

Fields

§offset: Archived<u64>

The archived counterpart of Instruction::I32Load16U::offset

§mem_addr: Archived<MemAddr>

The archived counterpart of Instruction::I32Load16U::mem_addr

The archived counterpart of Instruction::I32Load16U

§

I64Load8S

Fields

§offset: Archived<u64>

The archived counterpart of Instruction::I64Load8S::offset

§mem_addr: Archived<MemAddr>

The archived counterpart of Instruction::I64Load8S::mem_addr

The archived counterpart of Instruction::I64Load8S

§

I64Load8U

Fields

§offset: Archived<u64>

The archived counterpart of Instruction::I64Load8U::offset

§mem_addr: Archived<MemAddr>

The archived counterpart of Instruction::I64Load8U::mem_addr

The archived counterpart of Instruction::I64Load8U

§

I64Load16S

Fields

§offset: Archived<u64>

The archived counterpart of Instruction::I64Load16S::offset

§mem_addr: Archived<MemAddr>

The archived counterpart of Instruction::I64Load16S::mem_addr

The archived counterpart of Instruction::I64Load16S

§

I64Load16U

Fields

§offset: Archived<u64>

The archived counterpart of Instruction::I64Load16U::offset

§mem_addr: Archived<MemAddr>

The archived counterpart of Instruction::I64Load16U::mem_addr

The archived counterpart of Instruction::I64Load16U

§

I64Load32S

Fields

§offset: Archived<u64>

The archived counterpart of Instruction::I64Load32S::offset

§mem_addr: Archived<MemAddr>

The archived counterpart of Instruction::I64Load32S::mem_addr

The archived counterpart of Instruction::I64Load32S

§

I64Load32U

Fields

§offset: Archived<u64>

The archived counterpart of Instruction::I64Load32U::offset

§mem_addr: Archived<MemAddr>

The archived counterpart of Instruction::I64Load32U::mem_addr

The archived counterpart of Instruction::I64Load32U

§

I32Store

Fields

§offset: Archived<u64>

The archived counterpart of Instruction::I32Store::offset

§mem_addr: Archived<MemAddr>

The archived counterpart of Instruction::I32Store::mem_addr

The archived counterpart of Instruction::I32Store

§

I64Store

Fields

§offset: Archived<u64>

The archived counterpart of Instruction::I64Store::offset

§mem_addr: Archived<MemAddr>

The archived counterpart of Instruction::I64Store::mem_addr

The archived counterpart of Instruction::I64Store

§

F32Store

Fields

§offset: Archived<u64>

The archived counterpart of Instruction::F32Store::offset

§mem_addr: Archived<MemAddr>

The archived counterpart of Instruction::F32Store::mem_addr

The archived counterpart of Instruction::F32Store

§

F64Store

Fields

§offset: Archived<u64>

The archived counterpart of Instruction::F64Store::offset

§mem_addr: Archived<MemAddr>

The archived counterpart of Instruction::F64Store::mem_addr

The archived counterpart of Instruction::F64Store

§

I32Store8

Fields

§offset: Archived<u64>

The archived counterpart of Instruction::I32Store8::offset

§mem_addr: Archived<MemAddr>

The archived counterpart of Instruction::I32Store8::mem_addr

The archived counterpart of Instruction::I32Store8

§

I32Store16

Fields

§offset: Archived<u64>

The archived counterpart of Instruction::I32Store16::offset

§mem_addr: Archived<MemAddr>

The archived counterpart of Instruction::I32Store16::mem_addr

The archived counterpart of Instruction::I32Store16

§

I64Store8

Fields

§offset: Archived<u64>

The archived counterpart of Instruction::I64Store8::offset

§mem_addr: Archived<MemAddr>

The archived counterpart of Instruction::I64Store8::mem_addr

The archived counterpart of Instruction::I64Store8

§

I64Store16

Fields

§offset: Archived<u64>

The archived counterpart of Instruction::I64Store16::offset

§mem_addr: Archived<MemAddr>

The archived counterpart of Instruction::I64Store16::mem_addr

The archived counterpart of Instruction::I64Store16

§

I64Store32

Fields

§offset: Archived<u64>

The archived counterpart of Instruction::I64Store32::offset

§mem_addr: Archived<MemAddr>

The archived counterpart of Instruction::I64Store32::mem_addr

The archived counterpart of Instruction::I64Store32

§

MemorySize(Archived<MemAddr>, Archived<u8>)

Tuple Fields

§0: Archived<MemAddr>

The archived counterpart of Instruction::MemorySize::0

§1: Archived<u8>

The archived counterpart of Instruction::MemorySize::1

The archived counterpart of Instruction::MemorySize

§

MemoryGrow(Archived<MemAddr>, Archived<u8>)

Tuple Fields

§0: Archived<MemAddr>

The archived counterpart of Instruction::MemoryGrow::0

§1: Archived<u8>

The archived counterpart of Instruction::MemoryGrow::1

The archived counterpart of Instruction::MemoryGrow

§

I32Const(Archived<i32>)

Tuple Fields

§0: Archived<i32>

The archived counterpart of Instruction::I32Const::0

The archived counterpart of Instruction::I32Const

§

I64Const(Archived<i64>)

Tuple Fields

§0: Archived<i64>

The archived counterpart of Instruction::I64Const::0

The archived counterpart of Instruction::I64Const

§

F32Const(Archived<f32>)

Tuple Fields

§0: Archived<f32>

The archived counterpart of Instruction::F32Const::0

The archived counterpart of Instruction::F32Const

§

F64Const(Archived<f64>)

Tuple Fields

§0: Archived<f64>

The archived counterpart of Instruction::F64Const::0

The archived counterpart of Instruction::F64Const

§

RefNull(Archived<ValType>)

Tuple Fields

§0: Archived<ValType>

The archived counterpart of Instruction::RefNull::0

The archived counterpart of Instruction::RefNull

§

RefFunc(Archived<FuncAddr>)

Tuple Fields

§0: Archived<FuncAddr>

The archived counterpart of Instruction::RefFunc::0

The archived counterpart of Instruction::RefFunc

§

RefIsNull

The archived counterpart of Instruction::RefIsNull

§

I32Eqz

The archived counterpart of Instruction::I32Eqz

§

I32Eq

The archived counterpart of Instruction::I32Eq

§

I32Ne

The archived counterpart of Instruction::I32Ne

§

I32LtS

The archived counterpart of Instruction::I32LtS

§

I32LtU

The archived counterpart of Instruction::I32LtU

§

I32GtS

The archived counterpart of Instruction::I32GtS

§

I32GtU

The archived counterpart of Instruction::I32GtU

§

I32LeS

The archived counterpart of Instruction::I32LeS

§

I32LeU

The archived counterpart of Instruction::I32LeU

§

I32GeS

The archived counterpart of Instruction::I32GeS

§

I32GeU

The archived counterpart of Instruction::I32GeU

§

I64Eqz

The archived counterpart of Instruction::I64Eqz

§

I64Eq

The archived counterpart of Instruction::I64Eq

§

I64Ne

The archived counterpart of Instruction::I64Ne

§

I64LtS

The archived counterpart of Instruction::I64LtS

§

I64LtU

The archived counterpart of Instruction::I64LtU

§

I64GtS

The archived counterpart of Instruction::I64GtS

§

I64GtU

The archived counterpart of Instruction::I64GtU

§

I64LeS

The archived counterpart of Instruction::I64LeS

§

I64LeU

The archived counterpart of Instruction::I64LeU

§

I64GeS

The archived counterpart of Instruction::I64GeS

§

I64GeU

The archived counterpart of Instruction::I64GeU

§

F32Eq

The archived counterpart of Instruction::F32Eq

§

F32Ne

The archived counterpart of Instruction::F32Ne

§

F32Lt

The archived counterpart of Instruction::F32Lt

§

F32Gt

The archived counterpart of Instruction::F32Gt

§

F32Le

The archived counterpart of Instruction::F32Le

§

F32Ge

The archived counterpart of Instruction::F32Ge

§

F64Eq

The archived counterpart of Instruction::F64Eq

§

F64Ne

The archived counterpart of Instruction::F64Ne

§

F64Lt

The archived counterpart of Instruction::F64Lt

§

F64Gt

The archived counterpart of Instruction::F64Gt

§

F64Le

The archived counterpart of Instruction::F64Le

§

F64Ge

The archived counterpart of Instruction::F64Ge

§

I32Clz

The archived counterpart of Instruction::I32Clz

§

I32Ctz

The archived counterpart of Instruction::I32Ctz

§

I32Popcnt

The archived counterpart of Instruction::I32Popcnt

§

I32Add

The archived counterpart of Instruction::I32Add

§

I32Sub

The archived counterpart of Instruction::I32Sub

§

I32Mul

The archived counterpart of Instruction::I32Mul

§

I32DivS

The archived counterpart of Instruction::I32DivS

§

I32DivU

The archived counterpart of Instruction::I32DivU

§

I32RemS

The archived counterpart of Instruction::I32RemS

§

I32RemU

The archived counterpart of Instruction::I32RemU

§

I32And

The archived counterpart of Instruction::I32And

§

I32Or

The archived counterpart of Instruction::I32Or

§

I32Xor

The archived counterpart of Instruction::I32Xor

§

I32Shl

The archived counterpart of Instruction::I32Shl

§

I32ShrS

The archived counterpart of Instruction::I32ShrS

§

I32ShrU

The archived counterpart of Instruction::I32ShrU

§

I32Rotl

The archived counterpart of Instruction::I32Rotl

§

I32Rotr

The archived counterpart of Instruction::I32Rotr

§

I64Clz

The archived counterpart of Instruction::I64Clz

§

I64Ctz

The archived counterpart of Instruction::I64Ctz

§

I64Popcnt

The archived counterpart of Instruction::I64Popcnt

§

I64Add

The archived counterpart of Instruction::I64Add

§

I64Sub

The archived counterpart of Instruction::I64Sub

§

I64Mul

The archived counterpart of Instruction::I64Mul

§

I64DivS

The archived counterpart of Instruction::I64DivS

§

I64DivU

The archived counterpart of Instruction::I64DivU

§

I64RemS

The archived counterpart of Instruction::I64RemS

§

I64RemU

The archived counterpart of Instruction::I64RemU

§

I64And

The archived counterpart of Instruction::I64And

§

I64Or

The archived counterpart of Instruction::I64Or

§

I64Xor

The archived counterpart of Instruction::I64Xor

§

I64Shl

The archived counterpart of Instruction::I64Shl

§

I64ShrS

The archived counterpart of Instruction::I64ShrS

§

I64ShrU

The archived counterpart of Instruction::I64ShrU

§

I64Rotl

The archived counterpart of Instruction::I64Rotl

§

I64Rotr

The archived counterpart of Instruction::I64Rotr

§

F32Abs

The archived counterpart of Instruction::F32Abs

§

F32Neg

The archived counterpart of Instruction::F32Neg

§

F32Ceil

The archived counterpart of Instruction::F32Ceil

§

F32Floor

The archived counterpart of Instruction::F32Floor

§

F32Trunc

The archived counterpart of Instruction::F32Trunc

§

F32Nearest

The archived counterpart of Instruction::F32Nearest

§

F32Sqrt

The archived counterpart of Instruction::F32Sqrt

§

F32Add

The archived counterpart of Instruction::F32Add

§

F32Sub

The archived counterpart of Instruction::F32Sub

§

F32Mul

The archived counterpart of Instruction::F32Mul

§

F32Div

The archived counterpart of Instruction::F32Div

§

F32Min

The archived counterpart of Instruction::F32Min

§

F32Max

The archived counterpart of Instruction::F32Max

§

F32Copysign

The archived counterpart of Instruction::F32Copysign

§

F64Abs

The archived counterpart of Instruction::F64Abs

§

F64Neg

The archived counterpart of Instruction::F64Neg

§

F64Ceil

The archived counterpart of Instruction::F64Ceil

§

F64Floor

The archived counterpart of Instruction::F64Floor

§

F64Trunc

The archived counterpart of Instruction::F64Trunc

§

F64Nearest

The archived counterpart of Instruction::F64Nearest

§

F64Sqrt

The archived counterpart of Instruction::F64Sqrt

§

F64Add

The archived counterpart of Instruction::F64Add

§

F64Sub

The archived counterpart of Instruction::F64Sub

§

F64Mul

The archived counterpart of Instruction::F64Mul

§

F64Div

The archived counterpart of Instruction::F64Div

§

F64Min

The archived counterpart of Instruction::F64Min

§

F64Max

The archived counterpart of Instruction::F64Max

§

F64Copysign

The archived counterpart of Instruction::F64Copysign

§

I32WrapI64

The archived counterpart of Instruction::I32WrapI64

§

I32TruncF32S

The archived counterpart of Instruction::I32TruncF32S

§

I32TruncF32U

The archived counterpart of Instruction::I32TruncF32U

§

I32TruncF64S

The archived counterpart of Instruction::I32TruncF64S

§

I32TruncF64U

The archived counterpart of Instruction::I32TruncF64U

§

I32Extend8S

The archived counterpart of Instruction::I32Extend8S

§

I32Extend16S

The archived counterpart of Instruction::I32Extend16S

§

I64Extend8S

The archived counterpart of Instruction::I64Extend8S

§

I64Extend16S

The archived counterpart of Instruction::I64Extend16S

§

I64Extend32S

The archived counterpart of Instruction::I64Extend32S

§

I64ExtendI32S

The archived counterpart of Instruction::I64ExtendI32S

§

I64ExtendI32U

The archived counterpart of Instruction::I64ExtendI32U

§

I64TruncF32S

The archived counterpart of Instruction::I64TruncF32S

§

I64TruncF32U

The archived counterpart of Instruction::I64TruncF32U

§

I64TruncF64S

The archived counterpart of Instruction::I64TruncF64S

§

I64TruncF64U

The archived counterpart of Instruction::I64TruncF64U

§

F32ConvertI32S

The archived counterpart of Instruction::F32ConvertI32S

§

F32ConvertI32U

The archived counterpart of Instruction::F32ConvertI32U

§

F32ConvertI64S

The archived counterpart of Instruction::F32ConvertI64S

§

F32ConvertI64U

The archived counterpart of Instruction::F32ConvertI64U

§

F32DemoteF64

The archived counterpart of Instruction::F32DemoteF64

§

F64ConvertI32S

The archived counterpart of Instruction::F64ConvertI32S

§

F64ConvertI32U

The archived counterpart of Instruction::F64ConvertI32U

§

F64ConvertI64S

The archived counterpart of Instruction::F64ConvertI64S

§

F64ConvertI64U

The archived counterpart of Instruction::F64ConvertI64U

§

F64PromoteF32

The archived counterpart of Instruction::F64PromoteF32

§

I32ReinterpretF32

The archived counterpart of Instruction::I32ReinterpretF32

§

I64ReinterpretF64

The archived counterpart of Instruction::I64ReinterpretF64

§

F32ReinterpretI32

The archived counterpart of Instruction::F32ReinterpretI32

§

F64ReinterpretI64

The archived counterpart of Instruction::F64ReinterpretI64

§

I32TruncSatF32S

The archived counterpart of Instruction::I32TruncSatF32S

§

I32TruncSatF32U

The archived counterpart of Instruction::I32TruncSatF32U

§

I32TruncSatF64S

The archived counterpart of Instruction::I32TruncSatF64S

§

I32TruncSatF64U

The archived counterpart of Instruction::I32TruncSatF64U

§

I64TruncSatF32S

The archived counterpart of Instruction::I64TruncSatF32S

§

I64TruncSatF32U

The archived counterpart of Instruction::I64TruncSatF32U

§

I64TruncSatF64S

The archived counterpart of Instruction::I64TruncSatF64S

§

I64TruncSatF64U

The archived counterpart of Instruction::I64TruncSatF64U

§

TableInit(Archived<TableAddr>, Archived<ElemAddr>)

Tuple Fields

§0: Archived<TableAddr>

The archived counterpart of Instruction::TableInit::0

§1: Archived<ElemAddr>

The archived counterpart of Instruction::TableInit::1

The archived counterpart of Instruction::TableInit

§

TableGet(Archived<TableAddr>)

Tuple Fields

§0: Archived<TableAddr>

The archived counterpart of Instruction::TableGet::0

The archived counterpart of Instruction::TableGet

§

TableSet(Archived<TableAddr>)

Tuple Fields

§0: Archived<TableAddr>

The archived counterpart of Instruction::TableSet::0

The archived counterpart of Instruction::TableSet

§

TableCopy

Fields

§from: Archived<TableAddr>

The archived counterpart of Instruction::TableCopy::from

§to: Archived<TableAddr>

The archived counterpart of Instruction::TableCopy::to

The archived counterpart of Instruction::TableCopy

§

TableGrow(Archived<TableAddr>)

Tuple Fields

§0: Archived<TableAddr>

The archived counterpart of Instruction::TableGrow::0

The archived counterpart of Instruction::TableGrow

§

TableSize(Archived<TableAddr>)

Tuple Fields

§0: Archived<TableAddr>

The archived counterpart of Instruction::TableSize::0

The archived counterpart of Instruction::TableSize

§

TableFill(Archived<TableAddr>)

Tuple Fields

§0: Archived<TableAddr>

The archived counterpart of Instruction::TableFill::0

The archived counterpart of Instruction::TableFill

§

MemoryInit(Archived<MemAddr>, Archived<DataAddr>)

Tuple Fields

§0: Archived<MemAddr>

The archived counterpart of Instruction::MemoryInit::0

§1: Archived<DataAddr>

The archived counterpart of Instruction::MemoryInit::1

The archived counterpart of Instruction::MemoryInit

§

MemoryCopy(Archived<MemAddr>, Archived<MemAddr>)

Tuple Fields

§0: Archived<MemAddr>

The archived counterpart of Instruction::MemoryCopy::0

§1: Archived<MemAddr>

The archived counterpart of Instruction::MemoryCopy::1

The archived counterpart of Instruction::MemoryCopy

§

MemoryFill(Archived<MemAddr>)

Tuple Fields

§0: Archived<MemAddr>

The archived counterpart of Instruction::MemoryFill::0

The archived counterpart of Instruction::MemoryFill

§

DataDrop(Archived<DataAddr>)

Tuple Fields

§0: Archived<DataAddr>

The archived counterpart of Instruction::DataDrop::0

The archived counterpart of Instruction::DataDrop

Trait Implementations§

Auto Trait Implementations§

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> ArchivePointee for T

§

type ArchivedMetadata = ()

The archived version of the pointer metadata for this type.
source§

fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata ) -> <T as Pointee>::Metadata

Converts some archived metadata to the pointer metadata for itself.
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<F, W, T, D> Deserialize<With<T, W>, D> for F
where W: DeserializeWith<F, T, D>, D: Fallible + ?Sized, F: ?Sized,

source§

fn deserialize( &self, deserializer: &mut D ) -> Result<With<T, W>, <D as Fallible>::Error>

Deserializes using the given deserializer
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> LayoutRaw for T

source§

fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>

Gets the layout of the type.
§

impl<T> Pointee for T

§

type Metadata = ()

The type for metadata in pointers and references to Self.
source§

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

§

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>,

§

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.