pub enum PdEntryKind {
    NextPageTable(PhysicalPage<Size4K>, Pde),
    Leaf2MiB(PhysicalPage<Size2M>, Pde2M),
}Expand description
Decoded PDE kind.
NextPageTable: non-leaf (PS=0), contains the 4 KiB-aligned PT base.Leaf2MiB: leaf (PS=1), contains the 2 MiB-aligned large-page base.
Variants§
NextPageTable(PhysicalPage<Size4K>, Pde)
Leaf2MiB(PhysicalPage<Size2M>, Pde2M)
Auto Trait Implementations§
impl Freeze for PdEntryKind
impl RefUnwindSafe for PdEntryKind
impl Send for PdEntryKind
impl Sync for PdEntryKind
impl Unpin for PdEntryKind
impl UnwindSafe for PdEntryKind
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