pub enum W65Operand {
Address(W65Address),
Immediate(u16),
Register(W65Register),
RegPair(W65Register, W65Register),
Implied,
SrcDest {
src: Address,
dest: Address,
},
}Variants§
Address(W65Address)
Immediate(u16)
Register(W65Register)
RegPair(W65Register, W65Register)
Implied
SrcDest
Trait Implementations§
Source§impl Clone for W65Operand
impl Clone for W65Operand
Source§fn clone(&self) -> W65Operand
fn clone(&self) -> W65Operand
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 W65Operand
impl Debug for W65Operand
Source§impl Hash for W65Operand
impl Hash for W65Operand
Source§impl PartialEq for W65Operand
impl PartialEq for W65Operand
impl Eq for W65Operand
impl StructuralPartialEq for W65Operand
Auto Trait Implementations§
impl Freeze for W65Operand
impl RefUnwindSafe for W65Operand
impl Send for W65Operand
impl Sync for W65Operand
impl Unpin for W65Operand
impl UnwindSafe for W65Operand
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