Struct actix_web::Form [−][src]
pub struct Form<T>(pub T);
Extract typed information from the request's body.
To extract typed information from request's body, the type T
must
implement the Deserialize
trait from serde.
FormConfig allows to configure extraction process.
Example
#[macro_use] extern crate serde_derive; use actix_web::{App, Form, Result}; #[derive(Deserialize)] struct FormData { username: String, } /// extract form data using serde /// this handler get called only if content type is *x-www-form-urlencoded* /// and content of the request could be deserialized to a `FormData` struct fn index(form: Form<FormData>) -> Result<String> { Ok(format!("Welcome {}!", form.username)) }
Methods
impl<T> Form<T>
[src]
impl<T> Form<T>
pub fn into_inner(self) -> T
[src]
pub fn into_inner(self) -> T
Deconstruct to an inner value
Trait Implementations
impl<T> Deref for Form<T>
[src]
impl<T> Deref for Form<T>
type Target = T
The resulting type after dereferencing.
ⓘImportant traits for &'a mut Rfn deref(&self) -> &T
[src]
ⓘImportant traits for &'a mut R
fn deref(&self) -> &T
Dereferences the value.
impl<T> DerefMut for Form<T>
[src]
impl<T> DerefMut for Form<T>
ⓘImportant traits for &'a mut Rfn deref_mut(&mut self) -> &mut T
[src]
ⓘImportant traits for &'a mut R
fn deref_mut(&mut self) -> &mut T
Mutably dereferences the value.
impl<T, S> FromRequest<S> for Form<T> where
T: DeserializeOwned + 'static,
S: 'static,
[src]
impl<T, S> FromRequest<S> for Form<T> where
T: DeserializeOwned + 'static,
S: 'static,
type Config = FormConfig<S>
Configuration for conversion process
type Result = Box<Future<Item = Self, Error = Error>>
Future that resolves to a Self
fn from_request(req: &HttpRequest<S>, cfg: &Self::Config) -> Self::Result
[src]
fn from_request(req: &HttpRequest<S>, cfg: &Self::Config) -> Self::Result
Convert request to a Self
fn extract(req: &HttpRequest<S>) -> Self::Result
[src]
fn extract(req: &HttpRequest<S>) -> Self::Result
Convert request to a Self Read more
impl<T: Debug> Debug for Form<T>
[src]
impl<T: Debug> Debug for Form<T>
fn fmt(&self, f: &mut Formatter) -> Result
[src]
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl<T: Display> Display for Form<T>
[src]
impl<T: Display> Display for Form<T>