#[repr(C)]pub enum Arch {
ARM = 1,
ARM64 = 2,
MIPS = 3,
X86 = 4,
PPC = 5,
SPARC = 6,
M68K = 7,
}Variants§
ARM = 1
ARM architecture (including Thumb, Thumb-2)
ARM64 = 2
ARM-64, also called AArch64
MIPS = 3
MIPS architecture
X86 = 4
X86 architecture (including x86 & x86-64)
PPC = 5
PowerPC architecture
SPARC = 6
Sparc architecture
M68K = 7
M68K architecture
Trait Implementations§
impl Copy 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