[][src]Struct mac_sys_info::structs::cpu_features_info::X86_64CpuFeaturesInfo

pub struct X86_64CpuFeaturesInfo { /* fields omitted */ }

x86 specific CPU features, like AVX.

Implementations

impl X86_64CpuFeaturesInfo[src]

pub fn new(sysinfo: &BTreeMap<String, String>) -> Result<Self, MacSysInfoError>[src]

pub fn mmx(&self) -> bool[src]

pub fn sse(&self) -> bool[src]

pub fn sse2(&self) -> bool[src]

pub fn sse3(&self) -> bool[src]

pub fn sse4_1(&self) -> bool[src]

pub fn sse4_2(&self) -> bool[src]

pub fn aes(&self) -> bool[src]

pub fn avx1_0(&self) -> bool[src]

pub fn avx2_0(&self) -> bool[src]

pub fn avx512f(&self) -> bool[src]

pub fn avx512cd(&self) -> bool[src]

pub fn avx512dq(&self) -> bool[src]

pub fn avx512bw(&self) -> bool[src]

pub fn avx512vl(&self) -> bool[src]

pub fn avx512ifma(&self) -> bool[src]

pub fn avx512vbmi(&self) -> bool[src]

Trait Implementations

impl Debug for X86_64CpuFeaturesInfo[src]

impl Display for X86_64CpuFeaturesInfo[src]

impl Serialize for X86_64CpuFeaturesInfo[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.