pub enum AddressingMode {
Show 13 variants
Accumulator,
Implied,
Immediate,
ZeroPage,
Absolute,
ZeroPageX,
ZeroPageY,
AbsoluteX,
AbsoluteY,
Indirect,
IndexedIndirect,
IndirectIndexed,
Relative,
}
Variants§
Accumulator
Implied
Immediate
ZeroPage
Absolute
ZeroPageX
ZeroPageY
AbsoluteX
AbsoluteY
Indirect
IndexedIndirect
IndirectIndexed
Relative
Implementations§
Source§impl AddressingMode
impl AddressingMode
pub fn operand_len(&self) -> usize
Trait Implementations§
Source§impl Clone for AddressingMode
impl Clone for AddressingMode
Source§fn clone(&self) -> AddressingMode
fn clone(&self) -> AddressingMode
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 AddressingMode
impl Debug for AddressingMode
Source§impl PartialEq for AddressingMode
impl PartialEq for AddressingMode
impl Copy for AddressingMode
impl StructuralPartialEq for AddressingMode
Auto Trait Implementations§
impl Freeze for AddressingMode
impl RefUnwindSafe for AddressingMode
impl Send for AddressingMode
impl Sync for AddressingMode
impl Unpin for AddressingMode
impl UnwindSafe for AddressingMode
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