pub struct PageTableMapApplyError<T: TableMeta, A: FrameAllocator> { /* private fields */ }Expand description
Failed structural apply that returns the still-unpublished map deposit.
Returning ownership is essential for non-sleeping page-table critical sections: a stale deposit is released only after the caller drops its lock.
Implementations§
Source§impl<T: TableMeta, A: FrameAllocator> PageTableMapApplyError<T, A>
impl<T: TableMeta, A: FrameAllocator> PageTableMapApplyError<T, A>
pub const fn error(&self) -> &PagingError
pub fn into_parts(self) -> (PagingError, PageTableMapDeposit<T, A>)
Trait Implementations§
Auto Trait Implementations§
impl<T, A> Freeze for PageTableMapApplyError<T, A>where
PageTableMapDeposit<T, A>: Freeze,
impl<T, A> RefUnwindSafe for PageTableMapApplyError<T, A>where
PageTableMapDeposit<T, A>: RefUnwindSafe,
impl<T, A> Send for PageTableMapApplyError<T, A>where
PageTableMapDeposit<T, A>: Send,
impl<T, A> Sync for PageTableMapApplyError<T, A>where
PageTableMapDeposit<T, A>: Sync,
impl<T, A> Unpin for PageTableMapApplyError<T, A>where
PageTableMapDeposit<T, A>: Unpin,
impl<T, A> UnsafeUnpin for PageTableMapApplyError<T, A>where
PageTableMapDeposit<T, A>: UnsafeUnpin,
impl<T, A> UnwindSafe for PageTableMapApplyError<T, A>where
PageTableMapDeposit<T, A>: UnwindSafe,
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