pub enum EnsureTarget {
    L3For1G,
    L2For2M,
    L1For4K,
}Expand description
Target table/level produced by ensure_chain.
Variants§
L3For1G
You will write a PDPTE (1 GiB leaf).
L2For2M
You will write a PDE (2 MiB leaf).
L1For4K
You will write a PTE (4 KiB leaf).
Trait Implementations§
Source§impl Clone for EnsureTarget
 
impl Clone for EnsureTarget
Source§fn clone(&self) -> EnsureTarget
 
fn clone(&self) -> EnsureTarget
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read moreSource§impl Debug for EnsureTarget
 
impl Debug for EnsureTarget
Source§impl PartialEq for EnsureTarget
 
impl PartialEq for EnsureTarget
impl Copy for EnsureTarget
impl Eq for EnsureTarget
impl StructuralPartialEq for EnsureTarget
Auto Trait Implementations§
impl Freeze for EnsureTarget
impl RefUnwindSafe for EnsureTarget
impl Send for EnsureTarget
impl Sync for EnsureTarget
impl Unpin for EnsureTarget
impl UnwindSafe for EnsureTarget
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