pub enum Operand {
}
Variants§
Absolute(u16)
AbsoluteX(u16)
AbsoluteY(u16)
Accumulator
Immediate(u8)
Implied
IndexedIndirect(u8)
Indirect(u16)
IndirectIndexed(u8)
Relative(i8)
ZeroPage(u8)
ZeroPageX(u8)
ZeroPageY(u8)
Trait Implementations§
impl Eq for Operand
impl StructuralPartialEq for Operand
Auto Trait Implementations§
impl Freeze for Operand
impl RefUnwindSafe for Operand
impl Send for Operand
impl Sync for Operand
impl Unpin for Operand
impl UnwindSafe for Operand
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