pub enum InstructionOps {
R8(Reg8),
Index(IndexOps),
E(Expr),
}Variants§
Trait Implementations§
Source§impl Clone for InstructionOps
impl Clone for InstructionOps
Source§fn clone(&self) -> InstructionOps
fn clone(&self) -> InstructionOps
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 InstructionOps
impl Debug for InstructionOps
Source§impl Display for InstructionOps
impl Display for InstructionOps
Source§impl PartialEq for InstructionOps
impl PartialEq for InstructionOps
impl Eq for InstructionOps
impl StructuralPartialEq for InstructionOps
Auto Trait Implementations§
impl Freeze for InstructionOps
impl RefUnwindSafe for InstructionOps
impl Send for InstructionOps
impl Sync for InstructionOps
impl Unpin for InstructionOps
impl UnwindSafe for InstructionOps
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