Enum rmp::decode::bytes::BytesReadError
source · #[non_exhaustive]pub enum BytesReadError {
InsufficientBytes {
expected: usize,
actual: usize,
position: u64,
},
}
Expand description
Indicates that an error occurred reading from Bytes
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
InsufficientBytes
Indicates that there were not enough bytes.
Trait Implementations§
source§impl Debug for BytesReadError
impl Debug for BytesReadError
source§impl Display for BytesReadError
impl Display for BytesReadError
source§impl Error for BytesReadError
impl Error for BytesReadError
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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()
impl RmpReadErr for BytesReadError
Auto Trait Implementations§
impl Freeze for BytesReadError
impl RefUnwindSafe for BytesReadError
impl Send for BytesReadError
impl Sync for BytesReadError
impl Unpin for BytesReadError
impl UnwindSafe for BytesReadError
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