#[repr(u32)]pub enum MmPriority {
LowPagePriority = 0,
NormalPagePriority = 16,
HighPagePriority = 32,
}Expand description
page priority for MDL mapping
Variants§
Trait Implementations§
Source§impl Clone for MmPriority
impl Clone for MmPriority
Source§fn clone(&self) -> MmPriority
fn clone(&self) -> MmPriority
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for MmPriority
Source§impl Debug for MmPriority
impl Debug for MmPriority
impl Eq for MmPriority
Source§impl PartialEq for MmPriority
impl PartialEq for MmPriority
Source§fn eq(&self, other: &MmPriority) -> bool
fn eq(&self, other: &MmPriority) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for MmPriority
Auto Trait Implementations§
impl Freeze for MmPriority
impl RefUnwindSafe for MmPriority
impl Send for MmPriority
impl Sync for MmPriority
impl Unpin for MmPriority
impl UnsafeUnpin for MmPriority
impl UnwindSafe for MmPriority
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