Enum capstone_sys::ppc_op_type
source · [−]#[repr(u32)]
pub enum ppc_op_type {
PPC_OP_INVALID,
PPC_OP_REG,
PPC_OP_IMM,
PPC_OP_MEM,
PPC_OP_CRX,
}Expand description
Operand type for instruction’s operands
Variants
PPC_OP_INVALID
< = CS_OP_INVALID (Uninitialized).
PPC_OP_REG
< = CS_OP_REG (Register operand).
PPC_OP_IMM
< = CS_OP_IMM (Immediate operand).
PPC_OP_MEM
< = CS_OP_MEM (Memory operand).
PPC_OP_CRX
< Condition Register field
Trait Implementations
sourceimpl Clone for ppc_op_type
impl Clone for ppc_op_type
sourcefn clone(&self) -> ppc_op_type
fn clone(&self) -> ppc_op_type
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for ppc_op_type
impl Debug for ppc_op_type
sourceimpl Hash for ppc_op_type
impl Hash for ppc_op_type
sourceimpl PartialEq<ppc_op_type> for ppc_op_type
impl PartialEq<ppc_op_type> for ppc_op_type
impl Copy for ppc_op_type
impl Eq for ppc_op_type
impl StructuralEq for ppc_op_type
impl StructuralPartialEq for ppc_op_type
Auto Trait Implementations
impl RefUnwindSafe for ppc_op_type
impl Send for ppc_op_type
impl Sync for ppc_op_type
impl Unpin for ppc_op_type
impl UnwindSafe for ppc_op_type
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more