pub struct FormRejection { /* private fields */ }Expand description
Rejection type for form extraction errors.
Implementations§
Source§impl FormRejection
impl FormRejection
Sourcepub const fn status(&self) -> StatusCode
pub const fn status(&self) -> StatusCode
Returns the status code for this rejection.
Trait Implementations§
Source§impl Debug for FormRejection
impl Debug for FormRejection
Source§impl Display for FormRejection
impl Display for FormRejection
Source§impl Error for FormRejection
impl Error for FormRejection
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<Error> for FormRejection
impl From<Error> for FormRejection
Source§fn from(err: Error) -> FormRejection
fn from(err: Error) -> FormRejection
Converts to this type from the input type.
Source§impl From<UrlEncodedError> for FormRejection
impl From<UrlEncodedError> for FormRejection
Source§fn from(err: UrlEncodedError) -> FormRejection
fn from(err: UrlEncodedError) -> FormRejection
Converts to this type from the input type.
Source§impl IntoResponse for FormRejection
impl IntoResponse for FormRejection
Source§fn into_response(self) -> Response<Body>
fn into_response(self) -> Response<Body>
Create a response.
Auto Trait Implementations§
impl Freeze for FormRejection
impl !RefUnwindSafe for FormRejection
impl Send for FormRejection
impl Sync for FormRejection
impl Unpin for FormRejection
impl !UnwindSafe for FormRejection
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