#[non_exhaustive]pub enum RawFormRejection {
InvalidFormContentType(InvalidFormContentType),
BytesRejection(BytesRejection),
}
Expand description
Variants (Non-exhaustive)ยง
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
InvalidFormContentType(InvalidFormContentType)
BytesRejection(BytesRejection)
Implementationsยง
Trait Implementationsยง
Sourceยงimpl Debug for RawFormRejection
impl Debug for RawFormRejection
Sourceยงimpl Display for RawFormRejection
impl Display for RawFormRejection
Sourceยงimpl Error for RawFormRejection
impl Error for RawFormRejection
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<BytesRejection> for RawFormRejection
impl From<BytesRejection> for RawFormRejection
Sourceยงfn from(inner: BytesRejection) -> RawFormRejection
fn from(inner: BytesRejection) -> RawFormRejection
Converts to this type from the input type.
Sourceยงimpl From<InvalidFormContentType> for RawFormRejection
impl From<InvalidFormContentType> for RawFormRejection
Sourceยงfn from(inner: InvalidFormContentType) -> RawFormRejection
fn from(inner: InvalidFormContentType) -> RawFormRejection
Converts to this type from the input type.
Sourceยงimpl IntoResponse for RawFormRejection
impl IntoResponse for RawFormRejection
Sourceยงfn into_response(self) -> Response<UnsyncBoxBody<Bytes, Error>>
fn into_response(self) -> Response<UnsyncBoxBody<Bytes, Error>>
Create a response.
Auto Trait Implementationsยง
impl Freeze for RawFormRejection
impl !RefUnwindSafe for RawFormRejection
impl Send for RawFormRejection
impl Sync for RawFormRejection
impl Unpin for RawFormRejection
impl !UnwindSafe for RawFormRejection
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