Enum gear_pwasm_utils::rules::InstructionType
source · pub enum InstructionType {
Show 22 variants
Bit,
Add,
Mul,
Div,
Load,
Store,
Const,
FloatConst,
Local,
Global,
ControlFlow,
IntegerComparison,
FloatComparison,
Float,
Conversion,
FloatConversion,
Reinterpretation,
Unreachable,
Nop,
CurrentMemory,
GrowMemory,
SignExt,
}
Variants§
Bit
Add
Mul
Div
Load
Store
Const
FloatConst
Local
Global
ControlFlow
IntegerComparison
FloatComparison
Float
Conversion
FloatConversion
Reinterpretation
Unreachable
Nop
CurrentMemory
GrowMemory
SignExt
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 for InstructionType
impl PartialEq 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 for InstructionType
impl PartialOrd 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 moreimpl Copy for InstructionType
impl Eq for InstructionType
impl StructuralEq for InstructionType
impl StructuralPartialEq for InstructionType
Auto Trait Implementations§
impl RefUnwindSafe for InstructionType
impl Send for InstructionType
impl Sync for InstructionType
impl Unpin for InstructionType
impl UnwindSafe for InstructionType
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more