pub struct Cr4;
Expand description
Contains various control flags that enable architectural extensions, and indicate support for specific processor capabilities.
Implementations§
Source§impl Cr4
impl Cr4
Sourcepub unsafe fn write(flags: Cr4Flags)
pub unsafe fn write(flags: Cr4Flags)
Write CR4 flags.
Preserves the value of reserved fields.
§Safety
This function is unsafe because it’s possible to violate memory safety through it, e.g. by overwriting the physical address extension flag.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Cr4
impl RefUnwindSafe for Cr4
impl Send for Cr4
impl Sync for Cr4
impl Unpin for Cr4
impl UnwindSafe for Cr4
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