Struct capstone_sys::cs_sparc
source · #[repr(C)]pub struct cs_sparc {
pub cc: sparc_cc,
pub hint: sparc_hint,
pub op_count: u8,
pub operands: [cs_sparc_op; 4],
}
Expand description
Instruction structure
Fields§
§cc: sparc_cc
< code condition for this insn
hint: sparc_hint
< branch hint: encoding as bitwise OR of sparc_hint.
op_count: u8
Number of operands of this instruction, or 0 when instruction has no operand.
operands: [cs_sparc_op; 4]
< operands for this instruction.
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for cs_sparc
impl Send for cs_sparc
impl Sync for cs_sparc
impl Unpin for cs_sparc
impl UnwindSafe for cs_sparc
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