pub enum PackError {
InvalidNumber(Error),
InvalidUtf8,
InvalidValue(String),
InvalidLength(usize, usize),
BadFormat,
InvalidResume,
}Expand description
Errors returned when decoding or validating column data.
Variants§
InvalidNumber(Error)
A LEB128 varint in the encoded data was malformed.
InvalidUtf8
A string column contained invalid UTF-8 bytes.
InvalidValue(String)
A value failed a caller-supplied validation check (from load_with).
InvalidLength(usize, usize)
The decoded column length did not match the expected length passed to
load_unless_empty / load_with_unless_empty.
BadFormat
The encoded data did not follow the expected format.
InvalidResume
An iterator state produced by suspend() could not be resumed because the
underlying ColumnData was mutated after the suspend.
Trait Implementations§
Source§impl Error for PackError
impl Error for PackError
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()
Auto Trait Implementations§
impl Freeze for PackError
impl !RefUnwindSafe for PackError
impl Send for PackError
impl Sync for PackError
impl Unpin for PackError
impl UnsafeUnpin for PackError
impl !UnwindSafe for PackError
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