pub enum Tms320c64xOperand {
Reg(RegId),
Imm(i32),
Mem(Tms320c64xOpMem),
RegPair(RegId, RegId),
Invalid,
}Expand description
TMS320C64X operand
Variants§
Reg(RegId)
Register
Imm(i32)
Immediate
Mem(Tms320c64xOpMem)
Memory
RegPair(RegId, RegId)
Pair of registers
Invalid
Invalid
Trait Implementations§
Source§impl Clone for Tms320c64xOperand
impl Clone for Tms320c64xOperand
Source§fn clone(&self) -> Tms320c64xOperand
fn clone(&self) -> Tms320c64xOperand
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 Tms320c64xOperand
impl Debug for Tms320c64xOperand
Source§impl Default for Tms320c64xOperand
impl Default for Tms320c64xOperand
Source§impl From<&cs_tms320c64x_op> for Tms320c64xOperand
impl From<&cs_tms320c64x_op> for Tms320c64xOperand
Source§fn from(insn: &cs_tms320c64x_op) -> Tms320c64xOperand
fn from(insn: &cs_tms320c64x_op) -> Tms320c64xOperand
Converts to this type from the input type.
Source§impl From<Tms320c64xOperand> for ArchOperand
Available on crate feature arch_tms320c64x only.
impl From<Tms320c64xOperand> for ArchOperand
Available on crate feature
arch_tms320c64x only.Source§fn from(op: Tms320c64xOperand) -> ArchOperand
fn from(op: Tms320c64xOperand) -> ArchOperand
Converts to this type from the input type.
Source§impl PartialEq for Tms320c64xOperand
impl PartialEq for Tms320c64xOperand
impl Eq for Tms320c64xOperand
impl StructuralPartialEq for Tms320c64xOperand
Auto Trait Implementations§
impl Freeze for Tms320c64xOperand
impl RefUnwindSafe for Tms320c64xOperand
impl Send for Tms320c64xOperand
impl Sync for Tms320c64xOperand
impl Unpin for Tms320c64xOperand
impl UnwindSafe for Tms320c64xOperand
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