#[repr(usize)]pub enum MachOArchitecture {
ARM64 = 16_777_228,
I386 = 7,
X86_64 = 16_777_223,
PPC = 18,
PPC64 = 16_777_234,
}
Variants§
Trait Implementations§
Source§impl Clone for MachOArchitecture
impl Clone for MachOArchitecture
Source§fn clone(&self) -> MachOArchitecture
fn clone(&self) -> MachOArchitecture
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for MachOArchitecture
impl Debug for MachOArchitecture
Source§impl Ord for MachOArchitecture
impl Ord for MachOArchitecture
Source§fn cmp(&self, other: &MachOArchitecture) -> Ordering
fn cmp(&self, other: &MachOArchitecture) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for MachOArchitecture
impl PartialEq for MachOArchitecture
Source§impl PartialOrd for MachOArchitecture
impl PartialOrd for MachOArchitecture
impl Copy for MachOArchitecture
impl Eq for MachOArchitecture
impl StructuralPartialEq for MachOArchitecture
Auto Trait Implementations§
impl Freeze for MachOArchitecture
impl RefUnwindSafe for MachOArchitecture
impl Send for MachOArchitecture
impl Sync for MachOArchitecture
impl Unpin for MachOArchitecture
impl UnwindSafe for MachOArchitecture
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