pub struct Error { /* fields omitted */ }
A minimal representation of all possible errors that can occur using the
IntoDeserializer
trait.
Raised when there is general error when deserializing a type. Read more
Raised when a Deserialize
receives a type different from what it was expecting. Read more
Raised when a Deserialize
receives a value of the right type but that is wrong for some other reason. Read more
Raised when deserializing a sequence or map and the input data contains too many or too few elements. Read more
Raised when a Deserialize
enum type received a variant with an unrecognized name. Read more
Raised when a Deserialize
struct type received a field with an unrecognized name. Read more
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. Read more
Raised when a Deserialize
struct type received more than one of the same field. Read more
Used when a [Serialize
] implementation encounters any error while serializing a type. Read more
This method tests for self
and other
values to be equal, and is used by ==
. Read more
This method tests for !=
.
Performs copy-assignment from source
. Read more
Formats the value using the given formatter. Read more
Formats the value using the given formatter. Read more
Deprecating in 1.33.0
: replaced by Error::source, which can support downcasting
The lower-level cause of this error, if any. Read more
The lower-level source of this error, if any. Read more
Converts the given value to a String
. Read more
Creates owned data from borrowed data, usually by cloning. Read more
🔬 This is a nightly-only experimental API. (toowned_clone_into
)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
🔬 This is a nightly-only experimental API. (try_from
)
The type returned in the event of a conversion error.
🔬 This is a nightly-only experimental API. (try_from
)
Immutably borrows from an owned value. Read more
🔬 This is a nightly-only experimental API. (get_type_id
)
this method will likely be replaced by an associated static
type Error = <U as TryFrom<T>>::Error
🔬 This is a nightly-only experimental API. (try_from
)
The type returned in the event of a conversion error.
🔬 This is a nightly-only experimental API. (try_from
)
Mutably borrows from an owned value. Read more