[][src]Struct raw_cpuid::ExtendedFeatures

pub struct ExtendedFeatures { /* fields omitted */ }

Implementations

impl ExtendedFeatures[src]

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

FSGSBASE. Supports RDFSBASE/RDGSBASE/WRFSBASE/WRGSBASE if 1.

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

IA32_TSC_ADJUST MSR is supported if 1.

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

BMI1

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

HLE

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

AVX2

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

FDP_EXCPTN_ONLY. x87 FPU Data Pointer updated only on x87 exceptions if 1.

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

SMEP. Supports Supervisor-Mode Execution Prevention if 1.

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

BMI2

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

Supports Enhanced REP MOVSB/STOSB if 1.

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

INVPCID. If 1, supports INVPCID instruction for system software that manages process-context identifiers.

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

RTM

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

Supports Intel Resource Director Technology (RDT) Monitoring capability.

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

Deprecates FPU CS and FPU DS values if 1.

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

MPX. Supports Intel Memory Protection Extensions if 1.

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

Supports Intel Resource Director Technology (RDT) Allocation capability.

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

Supports RDSEED.

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

Supports RDSEED (deprecated alias).

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

Supports ADX.

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

SMAP. Supports Supervisor-Mode Access Prevention (and the CLAC/STAC instructions) if 1.

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

Supports CLFLUSHOPT.

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

Supports Intel Processor Trace.

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

Supports SHA Instructions.

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

Supports Intel® Software Guard Extensions (Intel® SGX Extensions).

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

Supports AVX512F.

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

Supports AVX512DQ.

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

AVX512_IFMA

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

AVX512PF

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

AVX512ER

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

AVX512CD

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

AVX512BW

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

AVX512VL

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

CLWB

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

Has PREFETCHWT1 (Intel® Xeon Phi™ only).

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

Supports user-mode instruction prevention if 1.

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

Supports protection keys for user-mode pages.

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

OS has set CR4.PKE to enable protection keys (and the RDPKRU/WRPKRU instructions.

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

RDPID and IA32_TSC_AUX are available.

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

Supports SGX Launch Configuration.

pub fn mawau_value(&self) -> u8[src]

The value of MAWAU used by the BNDLDX and BNDSTX instructions in 64-bit mode.

Trait Implementations

impl Debug for ExtendedFeatures[src]

impl Default for ExtendedFeatures[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, 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.