Enum casper_wasm_utils::rules::InstructionType
source · pub enum InstructionType {
Show 21 variants
Bit,
Add,
Mul,
Div,
Load,
Store,
Const,
FloatConst,
Local,
Global,
ControlFlow,
IntegerComparison,
FloatComparison,
Float,
Conversion,
FloatConversion,
Reinterpretation,
Unreachable,
Nop,
CurrentMemory,
GrowMemory,
}Variants§
Bit
Add
Mul
Div
Load
Store
Const
FloatConst
Local
Global
ControlFlow
IntegerComparison
FloatComparison
Float
Conversion
FloatConversion
Reinterpretation
Unreachable
Nop
CurrentMemory
GrowMemory
Implementations§
source§impl InstructionType
impl InstructionType
pub fn op(instruction: &Instruction) -> Self
Trait Implementations§
source§impl Clone for InstructionType
impl Clone for InstructionType
source§fn clone(&self) -> InstructionType
fn clone(&self) -> InstructionType
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for InstructionType
impl Debug for InstructionType
source§impl FromStr for InstructionType
impl FromStr for InstructionType
source§impl Hash for InstructionType
impl Hash for InstructionType
source§impl Ord for InstructionType
impl Ord for InstructionType
source§fn cmp(&self, other: &InstructionType) -> Ordering
fn cmp(&self, other: &InstructionType) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq<InstructionType> for InstructionType
impl PartialEq<InstructionType> for InstructionType
source§fn eq(&self, other: &InstructionType) -> bool
fn eq(&self, other: &InstructionType) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl PartialOrd<InstructionType> for InstructionType
impl PartialOrd<InstructionType> for InstructionType
source§fn partial_cmp(&self, other: &InstructionType) -> Option<Ordering>
fn partial_cmp(&self, other: &InstructionType) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read more