Struct axum::extract::rejection::JsonDataError
source · 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