pub enum VarZeroVecFormatError {
Metadata,
Values(UleError),
}Variants§
Metadata
The byte buffer was not in the appropriate format for VarZeroVec.
Values(UleError)
One of the values could not be decoded.
Trait Implementations§
Source§impl Debug for VarZeroVecFormatError
impl Debug for VarZeroVecFormatError
Source§impl Display for VarZeroVecFormatError
impl Display for VarZeroVecFormatError
Source§impl Error for VarZeroVecFormatError
impl Error for VarZeroVecFormatError
1.30.0 · 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 VarZeroVecFormatError
impl RefUnwindSafe for VarZeroVecFormatError
impl Send for VarZeroVecFormatError
impl Sync for VarZeroVecFormatError
impl Unpin for VarZeroVecFormatError
impl UnsafeUnpin for VarZeroVecFormatError
impl UnwindSafe for VarZeroVecFormatError
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