pub struct PageTablePathDeposit<T: TableMeta, A: FrameAllocator> { /* private fields */ }Expand description
Move-only ownership of page-table directories prepared for one vacant leaf.
Unlike PageTableMapDeposit, the final leaf remains empty. This mirrors
Linux’s pmd_install() preparation for move_ptes(): destination page-table
structure can be allocated and published before the PTE lock is acquired,
while the later leaf move is allocation-free.
Trait Implementations§
Auto Trait Implementations§
impl<T, A> Freeze for PageTablePathDeposit<T, A>
impl<T, A> RefUnwindSafe for PageTablePathDeposit<T, A>
impl<T, A> Send for PageTablePathDeposit<T, A>
impl<T, A> Sync for PageTablePathDeposit<T, A>
impl<T, A> Unpin for PageTablePathDeposit<T, A>
impl<T, A> UnsafeUnpin for PageTablePathDeposit<T, A>
impl<T, A> UnwindSafe for PageTablePathDeposit<T, A>
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