pub enum Feature {
_64b,
compat,
}
Expand description
A CPU feature.
IA-32e mode is the typical mode of operation for modern 64-bit x86 processors. It consists of two sub-modes:
- 64-bit mode: uses the full 64-bit address space
- compatibility mode: allows use of legacy 32-bit code
Variants§
Implementations§
Trait Implementations§
impl Copy for Feature
impl StructuralPartialEq for Feature
Auto Trait Implementations§
impl Freeze for Feature
impl RefUnwindSafe for Feature
impl Send for Feature
impl Sync for Feature
impl Unpin for Feature
impl UnwindSafe for Feature
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