#[non_exhaustive]pub struct DeserializeFieldError {
pub field_name: Option<String>,
pub error: Box<dyn StdError + Send + Sync>,
}
Expand description
An error occurred while deserializing a field
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.field_name: Option<String>
The name of the field that failed to deserialize
error: Box<dyn StdError + Send + Sync>
The error that occurred while deserializing the field
Trait Implementations§
Source§impl Debug for DeserializeFieldError
impl Debug for DeserializeFieldError
Source§impl Display for DeserializeFieldError
impl Display for DeserializeFieldError
Source§impl Error for DeserializeFieldError
impl Error for DeserializeFieldError
Source§fn source(&self) -> Option<&(dyn StdError + 'static)>
fn source(&self) -> Option<&(dyn StdError + '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()
Auto Trait Implementations§
impl Freeze for DeserializeFieldError
impl !RefUnwindSafe for DeserializeFieldError
impl Send for DeserializeFieldError
impl Sync for DeserializeFieldError
impl Unpin for DeserializeFieldError
impl !UnwindSafe for DeserializeFieldError
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