#[repr(u8)]pub enum ArchivedConstInstructionwhere
i32: Archive,
i64: Archive,
f32: Archive,
f64: Archive,
GlobalAddr: Archive,
ValType: Archive,
FuncAddr: Archive,{
I32Const(Archived<i32>),
I64Const(Archived<i64>),
F32Const(Archived<f32>),
F64Const(Archived<f64>),
GlobalGet(Archived<GlobalAddr>),
RefNull(Archived<ValType>),
RefFunc(Archived<FuncAddr>),
}
Expand description
An archived ConstInstruction
Variants§
I32Const(Archived<i32>)
The archived counterpart of ConstInstruction::I32Const
Tuple Fields
0: Archived<i32>
The archived counterpart of ConstInstruction::I32Const::0
I64Const(Archived<i64>)
The archived counterpart of ConstInstruction::I64Const
Tuple Fields
0: Archived<i64>
The archived counterpart of ConstInstruction::I64Const::0
F32Const(Archived<f32>)
The archived counterpart of ConstInstruction::F32Const
Tuple Fields
0: Archived<f32>
The archived counterpart of ConstInstruction::F32Const::0
F64Const(Archived<f64>)
The archived counterpart of ConstInstruction::F64Const
Tuple Fields
0: Archived<f64>
The archived counterpart of ConstInstruction::F64Const::0
GlobalGet(Archived<GlobalAddr>)
The archived counterpart of ConstInstruction::GlobalGet
Tuple Fields
0: Archived<GlobalAddr>
The archived counterpart of ConstInstruction::GlobalGet::0
RefNull(Archived<ValType>)
The archived counterpart of ConstInstruction::RefNull
Tuple Fields
0: Archived<ValType>
The archived counterpart of ConstInstruction::RefNull::0
RefFunc(Archived<FuncAddr>)
The archived counterpart of ConstInstruction::RefFunc
Tuple Fields
0: Archived<FuncAddr>
The archived counterpart of ConstInstruction::RefFunc::0