pub enum MsgError {
UnexpectedEnd,
UnknownFormat(u8),
InvalidUtf8,
LengthOverflow,
}Expand description
MessagePack codec error.
Variants§
Trait Implementations§
impl StructuralPartialEq for MsgError
Auto Trait Implementations§
impl Freeze for MsgError
impl RefUnwindSafe for MsgError
impl Send for MsgError
impl Sync for MsgError
impl Unpin for MsgError
impl UnsafeUnpin for MsgError
impl UnwindSafe for MsgError
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