pub enum PdptEntryKind {
    NextPageDirectory(PhysicalPage<Size4K>, Pdpte),
    Leaf1GiB(PhysicalPage<Size1G>, Pdpte1G),
}Expand description
Decoded PDPT entry kind.
NextPageDirectory: non-leaf;PS=0; holds the 4 KiB-aligned PD base.Leaf1GiB: leaf;PS=1; holds the 1 GiB-aligned large-page base.
Variants§
NextPageDirectory(PhysicalPage<Size4K>, Pdpte)
Leaf1GiB(PhysicalPage<Size1G>, Pdpte1G)
Auto Trait Implementations§
impl Freeze for PdptEntryKind
impl RefUnwindSafe for PdptEntryKind
impl Send for PdptEntryKind
impl Sync for PdptEntryKind
impl Unpin for PdptEntryKind
impl UnwindSafe for PdptEntryKind
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