pub enum TaggedInstruction {
Rtype(Rtype),
Itype(Itype),
Stype(Stype),
Utype(Utype),
R4type(R4type),
R5type(R5type),
}
Variants§
Trait Implementations§
Source§impl Clone for TaggedInstruction
impl Clone for TaggedInstruction
Source§fn clone(&self) -> TaggedInstruction
fn clone(&self) -> TaggedInstruction
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 TaggedInstruction
impl Debug for TaggedInstruction
Source§impl Display for TaggedInstruction
impl Display for TaggedInstruction
Source§impl From<Itype> for TaggedInstruction
impl From<Itype> for TaggedInstruction
Source§impl From<R4type> for TaggedInstruction
impl From<R4type> for TaggedInstruction
Source§impl From<R5type> for TaggedInstruction
impl From<R5type> for TaggedInstruction
Source§impl From<Rtype> for TaggedInstruction
impl From<Rtype> for TaggedInstruction
Source§impl From<Stype> for TaggedInstruction
impl From<Stype> for TaggedInstruction
Source§impl From<TaggedInstruction> for Instruction
impl From<TaggedInstruction> for Instruction
Source§fn from(t: TaggedInstruction) -> Self
fn from(t: TaggedInstruction) -> Self
Converts to this type from the input type.
Source§impl From<Utype> for TaggedInstruction
impl From<Utype> for TaggedInstruction
Source§impl PartialEq for TaggedInstruction
impl PartialEq for TaggedInstruction
Source§impl TryFrom<u64> for TaggedInstruction
impl TryFrom<u64> for TaggedInstruction
impl StructuralPartialEq for TaggedInstruction
Auto Trait Implementations§
impl Freeze for TaggedInstruction
impl RefUnwindSafe for TaggedInstruction
impl Send for TaggedInstruction
impl Sync for TaggedInstruction
impl Unpin for TaggedInstruction
impl UnwindSafe for TaggedInstruction
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