[][src]Enum capstone::Arch

pub enum Arch {
    ARM,
    ARM64,
    MIPS,
    X86,
    PPC,
    SPARC,
    SYSZ,
    XCORE,
    M68K,
    TMS320C64X,
    M680X,
    EVM,
}

Architectures for the disassembler

Variants

ARM

ARM (Advanced RISC Machine)

ARM64

ARM 64-bit (also known as AArch64)

MIPS

MIPS

X86

x86 family (includes 16, 32, and 64 bit modes)

PPC

PowerPC

SPARC

SPARC

SYSZ

System z

XCORE

XCore

M68K

Motorolla 68K

TMS320C64X

Texas Instruments TMS320C64x

M680X

Motorola 68000

EVM

EVM

Trait Implementations

impl Clone for Arch[src]

impl Copy for Arch[src]

impl Debug for Arch[src]

impl Display for Arch[src]

impl EnumList for Arch[src]

impl Eq for Arch[src]

impl From<Arch> for cs_arch[src]

impl FromStr for Arch[src]

type Err = &'static str

The associated error which can be returned from parsing.

impl Hash for Arch[src]

impl PartialEq<Arch> for Arch[src]

impl StructuralEq for Arch[src]

impl StructuralPartialEq for Arch[src]

Auto Trait Implementations

impl Send for Arch

impl Sync for Arch

impl Unpin for Arch

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.