pub struct Form<T>(pub T);Expand description
URL encoded extractor and response.
As extractor
If used as an extractor Form will deserialize application/x-www-form-urlencoded request
bodies into some target type via serde::Deserialize.
Since parsing form data requires consuming the request body, the Form extractor must be
last if there are multiple extractors in a handler. See âthe order of extractorsâ
use axum::Form;
use serde::Deserialize;
#[derive(Deserialize)]
struct SignUp {
username: String,
password: String,
}
async fn accept_form(Form(sign_up): Form<SignUp>) {
// ...
}Note that Content-Type: multipart/form-data requests are not supported. Use Multipart
instead.
As response
use axum::Form;
use serde::Serialize;
#[derive(Serialize)]
struct Payload {
value: String,
}
async fn handler() -> Form<Payload> {
Form(Payload { value: "foo".to_owned() })
}Tuple Fields
0: TTrait Implementations
sourceimpl<T, S, B> FromRequest<S, B, ViaRequest> for Form<T>where
T: DeserializeOwned,
B: 'static + Body + Send,
<B as Body>::Data: Send,
<B as Body>::Error: Into<Box<dyn Error + Send + Sync + 'static, Global>>,
S: Send + Sync,
impl<T, S, B> FromRequest<S, B, ViaRequest> for Form<T>where
T: DeserializeOwned,
B: 'static + Body + Send,
<B as Body>::Data: Send,
<B as Body>::Error: Into<Box<dyn Error + Send + Sync + 'static, Global>>,
S: Send + Sync,
type Rejection = FormRejection
type Rejection = FormRejection
If the extractor fails itâll use this ârejectionâ type. A rejection is
a kind of error that can be converted into a response. Read more
sourceimpl<T> IntoResponse for Form<T>where
T: Serialize,
impl<T> IntoResponse for Form<T>where
T: Serialize,
sourcefn into_response(self) -> Response<UnsyncBoxBody<Bytes, Error>>
fn into_response(self) -> Response<UnsyncBoxBody<Bytes, Error>>
Create a response.
impl<T> Copy for Form<T>where
T: Copy,
Auto Trait Implementations
impl<T> RefUnwindSafe for Form<T>where
T: RefUnwindSafe,
impl<T> Send for Form<T>where
T: Send,
impl<T> Sync for Form<T>where
T: Sync,
impl<T> Unpin for Form<T>where
T: Unpin,
impl<T> UnwindSafe for Form<T>where
T: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more