pub enum AppendOutputError {
ApiError(ApiError),
PageFault {
page: u64,
num_pages: u64,
},
OutputLimitReached,
}
Variants§
Trait Implementations§
Source§impl Debug for AppendOutputError
impl Debug for AppendOutputError
Source§impl From<ApiError> for AppendOutputError
impl From<ApiError> for AppendOutputError
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 AppendOutputError
impl RefUnwindSafe for AppendOutputError
impl Send for AppendOutputError
impl Sync for AppendOutputError
impl Unpin for AppendOutputError
impl UnwindSafe for AppendOutputError
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