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 duplicate 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§impl PartialOrd for InstructionType
impl PartialOrd for InstructionType
impl Copy for InstructionType
impl Eq for InstructionType
impl StructuralPartialEq for InstructionType
Auto Trait Implementations§
impl Freeze for InstructionType
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