Enum serde_assert::de::Error

source ·
pub enum Error {
Show 18 variants EndOfTokens, ExpectedSeqEnd, ExpectedTupleEnd, ExpectedTupleStructEnd, ExpectedTupleVariantEnd, ExpectedMapEnd, ExpectedStructEnd, ExpectedStructVariantEnd, UnsupportedEnumDeserializerMethod, NotSelfDescribing, Custom(String), InvalidType(String, String), InvalidValue(String, String), InvalidLength(usize, String), UnknownVariant(String, &'static [&'static str]), UnknownField(String, &'static [&'static str]), MissingField(&'static str), DuplicateField(&'static str),
}
Expand description

An error encountered during deserialization.

Example

use serde::de::Error as _;
use serde_assert::de::Error;

assert_eq!(
    format!("{}", Error::missing_field("foo")),
    "missing field foo"
);

Variants§

§

EndOfTokens

The Deserializer reached the end of the input Tokens before deserialization was completed.

§

ExpectedSeqEnd

Expected a Token::SeqEnd.

§

ExpectedTupleEnd

Expected a Token::TupleEnd.

§

ExpectedTupleStructEnd

Expected a Token::TupleStructEnd.

§

ExpectedTupleVariantEnd

Expected a Token::TupleVariantEnd.

§

ExpectedMapEnd

Expected a Token::MapEnd.

§

ExpectedStructEnd

Expected a Token::StructEnd.

§

ExpectedStructVariantEnd

Expected a Token::StructVariantEnd.

§

UnsupportedEnumDeserializerMethod

An unsupported serde::Deserializer method was called during deserialization of an enum variant.

If you encounter this error, check what methods you are calling when deserializing your enum variants. Many standard serde types are not supported in this context.

§

NotSelfDescribing

The Deserializer was set to be non-self-describing, but the Deserialize implementation made a call to deserialize_any().

§

Custom(String)

An error created by calling custom().

§

InvalidType(String, String)

An error created by calling invalid_type().

§

InvalidValue(String, String)

An error created by calling invalid_value().

§

InvalidLength(usize, String)

An error created by calling invalid_length().

§

UnknownVariant(String, &'static [&'static str])

An error created by calling unknown_variant().

§

UnknownField(String, &'static [&'static str])

An error created by calling unknown_field().

§

MissingField(&'static str)

An error created by calling missing_field().

§

DuplicateField(&'static str)

An error created by calling duplicate_field().

Trait Implementations§

source§

impl Debug for Error

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Error

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Error for Error

source§

fn custom<T>(msg: T) -> Self
where T: Display,

Raised when there is general error when deserializing a type. Read more
source§

fn invalid_type(unexpected: Unexpected<'_>, expected: &dyn Expected) -> Self

Raised when a Deserialize receives a type different from what it was expecting. Read more
source§

fn invalid_value(unexpected: Unexpected<'_>, expected: &dyn Expected) -> Self

Raised when a Deserialize receives a value of the right type but that is wrong for some other reason. Read more
source§

fn invalid_length(len: usize, expected: &dyn Expected) -> Self

Raised when deserializing a sequence or map and the input data contains too many or too few elements. Read more
source§

fn unknown_variant(variant: &str, expected: &'static [&'static str]) -> Self

Raised when a Deserialize enum type received a variant with an unrecognized name.
source§

fn unknown_field(field: &str, expected: &'static [&'static str]) -> Self

Raised when a Deserialize struct type received a field with an unrecognized name.
source§

fn missing_field(field: &'static str) -> Self

Raised when a Deserialize struct type expected to receive a required field with a particular name but that field was not present in the input.
source§

fn duplicate_field(field: &'static str) -> Self

Raised when a Deserialize struct type received more than one of the same field.
source§

impl PartialEq for Error

source§

fn eq(&self, other: &Error) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Error for Error

source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The underlying cause of this error, if any.
source§

impl StructuralPartialEq for Error

Auto Trait Implementations§

§

impl RefUnwindSafe for Error

§

impl Send for Error

§

impl Sync for Error

§

impl Unpin for Error

§

impl UnwindSafe for Error

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.