pub enum PageFaultError {
ApiError(ApiError),
PageFault {
page: u64,
num_pages: u64,
},
}
Variants§
Trait Implementations§
Source§impl Debug for PageFaultError
impl Debug for PageFaultError
Source§impl From<ApiError> for PageFaultError
impl From<ApiError> for PageFaultError
Source§impl From<PageFaultError> for AppendOutputError
impl From<PageFaultError> for AppendOutputError
Source§fn from(e: PageFaultError) -> Self
fn from(e: PageFaultError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for PageFaultError
impl RefUnwindSafe for PageFaultError
impl Send for PageFaultError
impl Sync for PageFaultError
impl Unpin for PageFaultError
impl UnwindSafe for PageFaultError
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