Enum capstone::Arch [] [src]

pub enum Arch {
    ARM,
    ARM64,
    MIPS,
    X86,
    PPC,
    SPARC,
    SYSZ,
    XCORE,
}

Architectures for the disassembler

Variants

ARM (Advanced RISC Machine)

ARM 64-bit (also known as AArch64)

MIPS

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

PowerPC

SPARC

System z

XCore

Trait Implementations

impl Copy for Arch
[src]

impl Clone for Arch
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Arch
[src]

[src]

Formats the value using the given formatter. Read more

impl Eq for Arch
[src]

impl Hash for Arch
[src]

[src]

Feeds this value into the given [Hasher]. Read more

1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl PartialEq for Arch
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

1.0.0
[src]

This method tests for !=.

impl From<Arch> for cs_arch
[src]

[src]

Performs the conversion.

Auto Trait Implementations

impl Send for Arch

impl Sync for Arch