pub enum ValueCodecError {
UnknownFlag(u8),
TruncatedHeader,
Lz4Decode(String),
}Variants§
Trait Implementations§
Source§impl Debug for ValueCodecError
impl Debug for ValueCodecError
Source§impl Display for ValueCodecError
impl Display for ValueCodecError
impl Eq for ValueCodecError
Source§impl Error for ValueCodecError
impl Error for ValueCodecError
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()
Source§impl PartialEq for ValueCodecError
impl PartialEq for ValueCodecError
Source§fn eq(&self, other: &ValueCodecError) -> bool
fn eq(&self, other: &ValueCodecError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ValueCodecError
Auto Trait Implementations§
impl Freeze for ValueCodecError
impl RefUnwindSafe for ValueCodecError
impl Send for ValueCodecError
impl Sync for ValueCodecError
impl Unpin for ValueCodecError
impl UnsafeUnpin for ValueCodecError
impl UnwindSafe for ValueCodecError
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