#[repr(u8)]pub enum Arch {
Show 13 variants
    Arm = 0,
    Arm64 = 1,
    Mips = 2,
    X86 = 3,
    PowerPc = 4,
    Sparc = 5,
    SystemZ = 6,
    XCore = 7,
    M68K = 8,
    Tms320C64X = 9,
    M680X = 10,
    Evm = 11,
    Mos65xx = 12,
}Variants§
Arm = 0
ARM architecture (including Thumb, Thumb-2)
Arm64 = 1
ARM-64, also called AArch64
Mips = 2
Mips architecture
X86 = 3
X86 architecture (including x86 & x86-64)
PowerPc = 4
PowerPC architecture
Sparc = 5
Sparc architecture
SystemZ = 6
SystemZ architecture
XCore = 7
XCore architecture
M68K = 8
68K architecture
Tms320C64X = 9
TMS320C64x architecture
M680X = 10
680X architecture
Evm = 11
Ethereum architecture
Mos65xx = 12
MOS65XX architecture (including MOS6502)
Trait Implementations§
Source§impl From<Arch> for SupportQuery
 
impl From<Arch> for SupportQuery
Source§fn from(arch: Arch) -> SupportQuery
 
fn from(arch: Arch) -> SupportQuery
Converts to this type from the input type.
impl Copy for Arch
impl Eq for Arch
impl StructuralPartialEq for Arch
Auto Trait Implementations§
impl Freeze for Arch
impl RefUnwindSafe for Arch
impl Send for Arch
impl Sync for Arch
impl Unpin for Arch
impl UnwindSafe for Arch
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