pub enum AddInstruction {
AddReg(Register, Register, Register),
AddImm(Register, Register, Immediate5),
}Variants§
Trait Implementations§
Source§impl Clone for AddInstruction
impl Clone for AddInstruction
Source§fn clone(&self) -> AddInstruction
fn clone(&self) -> AddInstruction
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 AddInstruction
impl Debug for AddInstruction
Source§impl PartialEq for AddInstruction
impl PartialEq for AddInstruction
impl Copy for AddInstruction
impl StructuralPartialEq for AddInstruction
Auto Trait Implementations§
impl Freeze for AddInstruction
impl RefUnwindSafe for AddInstruction
impl Send for AddInstruction
impl Sync for AddInstruction
impl Unpin for AddInstruction
impl UnwindSafe for AddInstruction
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