[−][src]Enum rmp_serde::decode::Error  
Enum representing errors that can occur while decoding MessagePack data.
Variants
InvalidMarkerRead(Error)The enclosed I/O error occured while trying to read a MessagePack marker.
InvalidDataRead(Error)The enclosed I/O error occured while trying to read the encoded MessagePack data.
TypeMismatch(Marker)A mismatch occured between the decoded and expected value types.
OutOfRangeA numeric cast failed due to an out-of-range error.
LengthMismatch(u32)A decoded array did not have the enclosed expected length.
Uncategorized(String)An otherwise uncategorized error occured. See the enclosed String for
details.
Syntax(String)A general error occured while deserializing the expected type. See the
enclosed String for details.
Utf8Error(Utf8Error)An encoded string could not be parsed as UTF-8.
DepthLimitExceededThe depth limit was exceeded; not currently used.
Trait Implementations
impl From<MarkerReadError> for Error[src] 
impl From<MarkerReadError> for Errorfn from(err: MarkerReadError) -> Error[src] 
fn from(err: MarkerReadError) -> ErrorPerforms the conversion.
impl From<Utf8Error> for Error[src] 
impl From<Utf8Error> for Errorimpl From<ValueReadError> for Error[src] 
impl From<ValueReadError> for Errorfn from(err: ValueReadError) -> Error[src] 
fn from(err: ValueReadError) -> ErrorPerforms the conversion.
impl From<NumValueReadError> for Error[src] 
impl From<NumValueReadError> for Errorfn from(err: NumValueReadError) -> Error[src] 
fn from(err: NumValueReadError) -> ErrorPerforms the conversion.
impl<'a> From<DecodeStringError<'a>> for Error[src] 
impl<'a> From<DecodeStringError<'a>> for Errorfn from(err: DecodeStringError) -> Error[src] 
fn from(err: DecodeStringError) -> ErrorPerforms the conversion.
impl Display for Error[src] 
impl Display for Errorfn fmt(&self, fmt: &mut Formatter) -> Result<(), Error>[src] 
fn fmt(&self, fmt: &mut Formatter) -> Result<(), Error>Formats the value using the given formatter. Read more
impl Debug for Error[src] 
impl Debug for Errorfn fmt(&self, f: &mut Formatter) -> Result[src] 
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Error for Error[src] 
impl Error for Errorfn description(&self) -> &str[src] 
fn description(&self) -> &strThis method is soft-deprecated. Read more
fn cause(&self) -> Option<&Error>[src] 
fn cause(&self) -> Option<&Error>: replaced by Error::source, which can support downcasting
The lower-level cause of this error, if any. Read more
fn source(&self) -> Option<&(Error + 'static)>1.30.0[src] 
fn source(&self) -> Option<&(Error + 'static)>The lower-level source of this error, if any. Read more
impl Error for Error[src] 
impl Error for Errorfn custom<T: Display>(msg: T) -> Self[src] 
fn custom<T: Display>(msg: T) -> SelfRaised when there is general error when deserializing a type. Read more
fn invalid_type(unexp: Unexpected, exp: &Expected) -> Self[src] 
fn invalid_type(unexp: Unexpected, exp: &Expected) -> SelfRaised when a Deserialize receives a type different from what it was expecting. Read more
fn invalid_value(unexp: Unexpected, exp: &Expected) -> Self[src] 
fn invalid_value(unexp: Unexpected, exp: &Expected) -> SelfRaised when a Deserialize receives a value of the right type but that is wrong for some other reason. Read more
fn invalid_length(len: usize, exp: &Expected) -> Self[src] 
fn invalid_length(len: usize, exp: &Expected) -> SelfRaised when deserializing a sequence or map and the input data contains too many or too few elements. Read more
fn unknown_variant(variant: &str, expected: &'static [&'static str]) -> Self[src] 
fn unknown_variant(variant: &str, expected: &'static [&'static str]) -> SelfRaised when a Deserialize enum type received a variant with an unrecognized name. Read more
fn unknown_field(field: &str, expected: &'static [&'static str]) -> Self[src] 
fn unknown_field(field: &str, expected: &'static [&'static str]) -> SelfRaised when a Deserialize struct type received a field with an unrecognized name. Read more
fn missing_field(field: &'static str) -> Self[src] 
fn missing_field(field: &'static str) -> SelfRaised when a Deserialize struct type expected to receive a required field with a particular name but that field was not present in the input. Read more
fn duplicate_field(field: &'static str) -> Self[src] 
fn duplicate_field(field: &'static str) -> SelfRaised when a Deserialize struct type received more than one of the same field. Read more
Auto Trait Implementations
Blanket Implementations
impl<T> From for T[src] 
impl<T> From for Timpl<T> ToString for T where
    T: Display + ?Sized, [src] 
impl<T> ToString for T where
    T: Display + ?Sized, impl<T, U> Into for T where
    U: From<T>, [src] 
impl<T, U> Into for T where
    U: From<T>, impl<T, U> TryFrom for T where
    T: From<U>, [src] 
impl<T, U> TryFrom for T where
    T: From<U>, type Error = !
try_from)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src] 
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>try_from)Performs the conversion.
impl<T> Borrow for T where
    T: ?Sized, [src] 
impl<T> Borrow for T where
    T: ?Sized, impl<T> Any for T where
    T: 'static + ?Sized, [src] 
impl<T> Any for T where
    T: 'static + ?Sized, fn get_type_id(&self) -> TypeId[src] 
fn get_type_id(&self) -> TypeId🔬 This is a nightly-only experimental API.  (get_type_id)
this method will likely be replaced by an associated static
Gets the TypeId of self. Read more
impl<T> BorrowMut for T where
    T: ?Sized, [src] 
impl<T> BorrowMut for T where
    T: ?Sized, fn borrow_mut(&mut self) -> &mut T[src] 
fn borrow_mut(&mut self) -> &mut TMutably borrows from an owned value. Read more
impl<T, U> TryInto for T where
    U: TryFrom<T>, [src] 
impl<T, U> TryInto for T where
    U: TryFrom<T>,