pub struct InvalidInputError;
Expand description
This error type represents blob-to-MessegePack transcode errors.
This error type is raised during deserialization either
- when (first bytes of) given binary data is not a message pack object, or
- when it unexpectedly reaches the end of input.
Trait Implementations§
Source§impl Debug for InvalidInputError
impl Debug for InvalidInputError
Source§impl Display for InvalidInputError
impl Display for InvalidInputError
Source§impl Error for InvalidInputError
impl Error for InvalidInputError
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 From<InvalidInputError> for DeserializeError
impl From<InvalidInputError> for DeserializeError
Source§fn from(source: InvalidInputError) -> Self
fn from(source: InvalidInputError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for InvalidInputError
impl RefUnwindSafe for InvalidInputError
impl Send for InvalidInputError
impl Sync for InvalidInputError
impl Unpin for InvalidInputError
impl UnwindSafe for InvalidInputError
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