pub enum PageDataError {
PageHeaderParseError(PageHeaderError),
ItemIdDataParseError(ItemIdDataError),
RowDataParseError(RowDataError),
UInt12Error(UInt12Error),
IndexOutofBounds(usize, usize, usize),
UpdateChangedLength(usize, usize),
}
Variants§
PageHeaderParseError(PageHeaderError)
ItemIdDataParseError(ItemIdDataError)
RowDataParseError(RowDataError)
UInt12Error(UInt12Error)
IndexOutofBounds(usize, usize, usize)
UpdateChangedLength(usize, usize)
Trait Implementations§
Source§impl Debug for PageDataError
impl Debug for PageDataError
Source§impl Display for PageDataError
impl Display for PageDataError
Source§impl Error for PageDataError
impl Error for PageDataError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl From<ItemIdDataError> for PageDataError
impl From<ItemIdDataError> for PageDataError
Source§fn from(source: ItemIdDataError) -> Self
fn from(source: ItemIdDataError) -> Self
Converts to this type from the input type.
Source§impl From<PageDataError> for RowManagerError
impl From<PageDataError> for RowManagerError
Source§fn from(source: PageDataError) -> Self
fn from(source: PageDataError) -> Self
Converts to this type from the input type.
Source§impl From<PageHeaderError> for PageDataError
impl From<PageHeaderError> for PageDataError
Source§fn from(source: PageHeaderError) -> Self
fn from(source: PageHeaderError) -> Self
Converts to this type from the input type.
Source§impl From<RowDataError> for PageDataError
impl From<RowDataError> for PageDataError
Source§fn from(source: RowDataError) -> Self
fn from(source: RowDataError) -> Self
Converts to this type from the input type.
Source§impl From<UInt12Error> for PageDataError
impl From<UInt12Error> for PageDataError
Source§fn from(source: UInt12Error) -> Self
fn from(source: UInt12Error) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for PageDataError
impl RefUnwindSafe for PageDataError
impl Send for PageDataError
impl Sync for PageDataError
impl Unpin for PageDataError
impl UnwindSafe for PageDataError
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