pub enum IndexOps {
None(Reg16),
PostIncrement(Reg16),
PostIncrementE(Reg16, Expr),
PreDecrement(Reg16),
}Expand description
Index register operation type
Variants§
None(Reg16)
None - {Index}
PostIncrement(Reg16)
Post-Increment - {Index}+
PostIncrementE(Reg16, Expr)
Post-Increment with expr - {Index}+(expr)
PreDecrement(Reg16)
Pre-Decrement - -{Index}
Trait Implementations§
impl Eq for IndexOps
impl StructuralPartialEq for IndexOps
Auto Trait Implementations§
impl Freeze for IndexOps
impl RefUnwindSafe for IndexOps
impl Send for IndexOps
impl Sync for IndexOps
impl Unpin for IndexOps
impl UnwindSafe for IndexOps
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