#[repr(C)]
pub union cs_detail__bindgen_ty_1 {
Show 16 fields pub x86: cs_x86, pub arm64: cs_arm64, pub arm: cs_arm, pub m68k: cs_m68k, pub mips: cs_mips, pub ppc: cs_ppc, pub sparc: cs_sparc, pub sysz: cs_sysz, pub xcore: cs_xcore, pub tms320c64x: cs_tms320c64x, pub m680x: cs_m680x, pub evm: cs_evm, pub mos65xx: cs_mos65xx, pub wasm: cs_wasm, pub bpf: cs_bpf, pub riscv: cs_riscv,
}
Expand description

Architecture-specific instruction info

Fields§

§x86: cs_x86

< X86 architecture, including 16-bit, 32-bit & 64-bit mode

§arm64: cs_arm64

< ARM64 architecture (aka AArch64)

§arm: cs_arm

< ARM architecture (including Thumb/Thumb2)

§m68k: cs_m68k

< M68K architecture

§mips: cs_mips

< MIPS architecture

§ppc: cs_ppc

< PowerPC architecture

§sparc: cs_sparc

< Sparc architecture

§sysz: cs_sysz

< SystemZ architecture

§xcore: cs_xcore

< XCore architecture

§tms320c64x: cs_tms320c64x

< TMS320C64x architecture

§m680x: cs_m680x

< M680X architecture

§evm: cs_evm

< Ethereum architecture

§mos65xx: cs_mos65xx

< MOS65XX architecture (including MOS6502)

§wasm: cs_wasm

< Web Assembly architecture

§bpf: cs_bpf

< Berkeley Packet Filter architecture (including eBPF)

§riscv: cs_riscv

< RISCV architecture

Trait Implementations§

source§

impl Clone for cs_detail__bindgen_ty_1

source§

fn clone(&self) -> Self

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for cs_detail__bindgen_ty_1

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Copy for cs_detail__bindgen_ty_1

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.