pub enum RowDataError {
BaseSqlTypes(BaseSqlTypesError),
TableRowSizeMismatch(usize, usize),
MissingMinData(usize, usize),
MissingMaxData(usize, usize),
MissingInfoMaskData(usize, usize),
MissingNullMaskData(usize, usize),
NullMaskError(NullMaskError),
ItemPointerError(ItemPointerError),
ColumnDoesNotExist(String),
UnexpectedNull(String),
}
Variants§
BaseSqlTypes(BaseSqlTypesError)
TableRowSizeMismatch(usize, usize)
MissingMinData(usize, usize)
MissingMaxData(usize, usize)
MissingInfoMaskData(usize, usize)
MissingNullMaskData(usize, usize)
NullMaskError(NullMaskError)
ItemPointerError(ItemPointerError)
ColumnDoesNotExist(String)
UnexpectedNull(String)
Trait Implementations§
Source§impl Debug for RowDataError
impl Debug for RowDataError
Source§impl Display for RowDataError
impl Display for RowDataError
Source§impl Error for RowDataError
impl Error for RowDataError
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<BaseSqlTypesError> for RowDataError
impl From<BaseSqlTypesError> for RowDataError
Source§fn from(source: BaseSqlTypesError) -> Self
fn from(source: BaseSqlTypesError) -> Self
Converts to this type from the input type.
Source§impl From<ItemPointerError> for RowDataError
impl From<ItemPointerError> for RowDataError
Source§fn from(source: ItemPointerError) -> Self
fn from(source: ItemPointerError) -> Self
Converts to this type from the input type.
Source§impl From<NullMaskError> for RowDataError
impl From<NullMaskError> for RowDataError
Source§fn from(source: NullMaskError) -> Self
fn from(source: NullMaskError) -> 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<RowDataError> for RowManagerError
impl From<RowDataError> for RowManagerError
Source§fn from(source: RowDataError) -> Self
fn from(source: RowDataError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for RowDataError
impl RefUnwindSafe for RowDataError
impl Send for RowDataError
impl Sync for RowDataError
impl Unpin for RowDataError
impl UnwindSafe for RowDataError
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