pub enum JoinErrorKind {
IO(Error),
NonContiguous,
}
Expand description
Represents the different errors that could occur when trying to join pages objects
Variants§
IO(Error)
An io::Error
occured when trying to apply the correct protection to the newly joined
pages
NonContiguous
The pages that were trying to be joined were not part of the same allocation or were not contiguous
Trait Implementations§
Source§impl Debug for JoinErrorKind
impl Debug for JoinErrorKind
Auto Trait Implementations§
impl Freeze for JoinErrorKind
impl !RefUnwindSafe for JoinErrorKind
impl Send for JoinErrorKind
impl Sync for JoinErrorKind
impl Unpin for JoinErrorKind
impl !UnwindSafe for JoinErrorKind
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