pub enum CpuArchitectureInfo {
x86_64,
AppleSi,
}Expand description
Information about the CPU architecture. Because this library is Mac-specific, there is only X86_64 (since the beginning) and Apple Silicon (AppleSi) since late 2020.
Variants§
Implementations§
Trait Implementations§
Source§impl Debug for CpuArchitectureInfo
impl Debug for CpuArchitectureInfo
Source§impl Display for CpuArchitectureInfo
impl Display for CpuArchitectureInfo
Auto Trait Implementations§
impl Freeze for CpuArchitectureInfo
impl RefUnwindSafe for CpuArchitectureInfo
impl Send for CpuArchitectureInfo
impl Sync for CpuArchitectureInfo
impl Unpin for CpuArchitectureInfo
impl UnwindSafe for CpuArchitectureInfo
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