Struct capstone_sys::cs_ppc
source · #[repr(C)]pub struct cs_ppc {
pub bc: ppc_bc,
pub bh: ppc_bh,
pub update_cr0: bool,
pub op_count: u8,
pub operands: [cs_ppc_op; 8],
}
Expand description
Instruction structure
Fields§
§bc: ppc_bc
branch code for branch instructions
bh: ppc_bh
branch hint for branch instructions
update_cr0: bool
if update_cr0 = True, then this ‘dot’ insn updates CR0
op_count: u8
Number of operands of this instruction, or 0 when instruction has no operand.
operands: [cs_ppc_op; 8]
< operands for this instruction.
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for cs_ppc
impl Send for cs_ppc
impl Sync for cs_ppc
impl Unpin for cs_ppc
impl UnwindSafe for cs_ppc
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