pub enum Mos65xxOperand {
Reg(RegId),
Imm(u16),
Mem(u32),
Invalid,
}Expand description
mos65xx operand
Variants§
Trait Implementations§
Source§impl Clone for Mos65xxOperand
impl Clone for Mos65xxOperand
Source§fn clone(&self) -> Mos65xxOperand
fn clone(&self) -> Mos65xxOperand
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 Mos65xxOperand
impl Debug for Mos65xxOperand
Source§impl Default for Mos65xxOperand
impl Default for Mos65xxOperand
Source§impl From<&cs_mos65xx_op> for Mos65xxOperand
impl From<&cs_mos65xx_op> for Mos65xxOperand
Source§fn from(insn: &cs_mos65xx_op) -> Mos65xxOperand
fn from(insn: &cs_mos65xx_op) -> Mos65xxOperand
Converts to this type from the input type.
Source§impl From<Mos65xxOperand> for ArchOperand
Available on crate feature arch_mos65xx only.
impl From<Mos65xxOperand> for ArchOperand
Available on crate feature
arch_mos65xx only.Source§fn from(op: Mos65xxOperand) -> ArchOperand
fn from(op: Mos65xxOperand) -> ArchOperand
Converts to this type from the input type.
Source§impl PartialEq for Mos65xxOperand
impl PartialEq for Mos65xxOperand
impl Eq for Mos65xxOperand
impl StructuralPartialEq for Mos65xxOperand
Auto Trait Implementations§
impl Freeze for Mos65xxOperand
impl RefUnwindSafe for Mos65xxOperand
impl Send for Mos65xxOperand
impl Sync for Mos65xxOperand
impl Unpin for Mos65xxOperand
impl UnwindSafe for Mos65xxOperand
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