pub struct JsonDataError(/* private fields */);Expand description
Rejection type for Json.
This rejection is used if the request body is syntactically valid JSON but couldn’t be deserialized into the target type.
Implementations§
Source§impl JsonDataError
 
impl JsonDataError
Trait Implementations§
Source§impl Debug for JsonDataError
 
impl Debug for JsonDataError
Source§impl Display for JsonDataError
 
impl Display for JsonDataError
Source§impl Error for JsonDataError
 
impl Error for JsonDataError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
 
fn source(&self) -> Option<&(dyn Error + '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()
Source§impl From<JsonDataError> for JsonRejection
 
impl From<JsonDataError> for JsonRejection
Source§fn from(inner: JsonDataError) -> Self
 
fn from(inner: JsonDataError) -> Self
Converts to this type from the input type.
Source§impl IntoResponse for JsonDataError
 
impl IntoResponse for JsonDataError
Source§fn into_response(self) -> Response
 
fn into_response(self) -> Response
Create a response.
Auto Trait Implementations§
impl Freeze for JsonDataError
impl !RefUnwindSafe for JsonDataError
impl Send for JsonDataError
impl Sync for JsonDataError
impl Unpin for JsonDataError
impl !UnwindSafe for JsonDataError
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