pub enum PackError {
Message(Box<str>),
IoError(Error),
TrailingBytes,
MissingBytes,
BadStringFormat,
BadCode {
found: u8,
expected: Option<u8>,
},
BadPrefix,
BadUuid,
UnsupportedIntLength,
}
Expand description
A packing/unpacking error
Variants§
Message(Box<str>)
IoError(Error)
TrailingBytes
MissingBytes
BadStringFormat
BadCode
BadPrefix
BadUuid
UnsupportedIntLength
Trait Implementations§
Source§impl Error for PackError
impl Error for PackError
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 PackError
impl !RefUnwindSafe for PackError
impl Send for PackError
impl Sync for PackError
impl Unpin 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