Struct axum::extract::rejection::FailedToDeserializeForm
source · pub struct FailedToDeserializeForm(/* private fields */);
Expand description
Rejection type used if the Form
extractor is unable to
deserialize the form into the target type.
Implementations§
Trait Implementations§
source§impl Debug for FailedToDeserializeForm
impl Debug for FailedToDeserializeForm
source§impl Display for FailedToDeserializeForm
impl Display for FailedToDeserializeForm
source§impl Error for FailedToDeserializeForm
impl Error for FailedToDeserializeForm
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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<FailedToDeserializeForm> for FormRejection
impl From<FailedToDeserializeForm> for FormRejection
source§fn from(inner: FailedToDeserializeForm) -> Self
fn from(inner: FailedToDeserializeForm) -> Self
Converts to this type from the input type.
source§impl IntoResponse for FailedToDeserializeForm
impl IntoResponse for FailedToDeserializeForm
source§fn into_response(self) -> Response
fn into_response(self) -> Response
Create a response.
Auto Trait Implementations§
impl Freeze for FailedToDeserializeForm
impl !RefUnwindSafe for FailedToDeserializeForm
impl Send for FailedToDeserializeForm
impl Sync for FailedToDeserializeForm
impl Unpin for FailedToDeserializeForm
impl !UnwindSafe for FailedToDeserializeForm
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