pub struct MarkerReadError(pub Error);
Expand description
An error that can occur when attempting to read a MessagePack marker from the reader.
Tuple Fields§
§0: Error
Trait Implementations§
Source§impl Debug for MarkerReadError
impl Debug for MarkerReadError
Source§impl From<Error> for MarkerReadError
impl From<Error> for MarkerReadError
Source§fn from(err: Error) -> MarkerReadError
fn from(err: Error) -> MarkerReadError
Converts to this type from the input type.
Source§impl From<MarkerReadError> for NumValueReadError
impl From<MarkerReadError> for NumValueReadError
Source§fn from(err: MarkerReadError) -> NumValueReadError
fn from(err: MarkerReadError) -> NumValueReadError
Converts to this type from the input type.
Source§impl From<MarkerReadError> for ValueReadError
impl From<MarkerReadError> for ValueReadError
Source§fn from(err: MarkerReadError) -> ValueReadError
fn from(err: MarkerReadError) -> ValueReadError
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for MarkerReadError
impl !RefUnwindSafe for MarkerReadError
impl Send for MarkerReadError
impl Sync for MarkerReadError
impl Unpin for MarkerReadError
impl !UnwindSafe for MarkerReadError
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