pub struct CpuFeatures {
pub xsave: bool,
pub avx: bool,
pub avx2: bool,
pub avx512f: bool,
pub fma: bool,
pub xsave_mask: u64,
}
Fields§
§xsave: bool
§avx: bool
§avx2: bool
§avx512f: bool
§fma: bool
§xsave_mask: u64
Trait Implementations§
Source§impl Default for CpuFeatures
impl Default for CpuFeatures
Source§fn default() -> CpuFeatures
fn default() -> CpuFeatures
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for CpuFeatures
impl RefUnwindSafe for CpuFeatures
impl Send for CpuFeatures
impl Sync for CpuFeatures
impl Unpin for CpuFeatures
impl UnwindSafe for CpuFeatures
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