[−][src]Struct actix_web::web::Form
Form data helper (application/x-www-form-urlencoded
)
Can be use to extract url-encoded data from the request body, or send url-encoded data as the response.
Extract
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
use actix_web::web; use serde_derive::Deserialize; #[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: web::Form<FormData>) -> String { format!("Welcome {}!", form.username) }
Respond
The Form
type also allows you to respond with well-formed url-encoded data:
simply return a value of type Formserde::Serialize
;
Example
use actix_web::*; use serde_derive::Serialize; #[derive(Serialize)] struct SomeForm { name: String, age: u8 } // Will return a 200 response with header // `Content-Type: application/x-www-form-urlencoded` // and body "name=actix&age=123" fn index() -> web::Form<SomeForm> { web::Form(SomeForm { name: "actix".into(), age: 123 }) }
Implementations
impl<T> Form<T>
[src]
pub fn into_inner(self) -> T
[src]
Deconstruct to an inner value
Trait Implementations
impl<T: Debug> Debug for Form<T>
[src]
impl<T> Deref for Form<T>
[src]
impl<T> DerefMut for Form<T>
[src]
impl<T: Display> Display for Form<T>
[src]
impl<T: Eq> Eq for Form<T>
[src]
impl<T> FromRequest for Form<T> where
T: DeserializeOwned + 'static,
[src]
T: DeserializeOwned + 'static,
type Config = FormConfig
Configuration for this extractor
type Error = Error
The associated error which can be returned.
type Future = LocalBoxFuture<'static, Result<Self, Error>>
Future that resolves to a Self
pub fn from_request(req: &HttpRequest, payload: &mut Payload) -> Self::Future
[src]
pub fn extract(req: &HttpRequest) -> Self::Future
[src]
pub fn configure<F>(f: F) -> Self::Config where
F: FnOnce(Self::Config) -> Self::Config,
[src]
F: FnOnce(Self::Config) -> Self::Config,
impl<T: Ord> Ord for Form<T>
[src]
pub fn cmp(&self, other: &Form<T>) -> Ordering
[src]
#[must_use]pub fn max(self, other: Self) -> Self
1.21.0[src]
#[must_use]pub fn min(self, other: Self) -> Self
1.21.0[src]
#[must_use]pub fn clamp(self, min: Self, max: Self) -> Self
1.50.0[src]
impl<T: PartialEq> PartialEq<Form<T>> for Form<T>
[src]
impl<T: PartialOrd> PartialOrd<Form<T>> for Form<T>
[src]
pub fn partial_cmp(&self, other: &Form<T>) -> Option<Ordering>
[src]
pub fn lt(&self, other: &Form<T>) -> bool
[src]
pub fn le(&self, other: &Form<T>) -> bool
[src]
pub fn gt(&self, other: &Form<T>) -> bool
[src]
pub fn ge(&self, other: &Form<T>) -> bool
[src]
impl<T: Serialize> Responder for Form<T>
[src]
type Error = Error
The associated error which can be returned.
type Future = Ready<Result<Response, Error>>
The future response value.
pub fn respond_to(self, _: &HttpRequest) -> Self::Future
[src]
pub fn with_status(self, status: StatusCode) -> CustomResponder<Self> where
Self: Sized,
[src]
Self: Sized,
pub fn with_header<K, V>(self, key: K, value: V) -> CustomResponder<Self> where
Self: Sized,
HeaderName: TryFrom<K>,
<HeaderName as TryFrom<K>>::Error: Into<HttpError>,
V: IntoHeaderValue,
[src]
Self: Sized,
HeaderName: TryFrom<K>,
<HeaderName as TryFrom<K>>::Error: Into<HttpError>,
V: IntoHeaderValue,
impl<T> StructuralEq for Form<T>
[src]
impl<T> StructuralPartialEq for Form<T>
[src]
Auto Trait Implementations
impl<T> RefUnwindSafe for Form<T> where
T: RefUnwindSafe,
T: RefUnwindSafe,
impl<T> Send for Form<T> where
T: Send,
T: Send,
impl<T> Sync for Form<T> where
T: Sync,
T: Sync,
impl<T> Unpin for Form<T> where
T: Unpin,
T: Unpin,
impl<T> UnwindSafe for Form<T> where
T: UnwindSafe,
T: UnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<Q, K> Equivalent<K> for Q where
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,
[src]
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,
pub fn equivalent(&self, key: &K) -> bool
[src]
impl<T> From<T> for T
[src]
impl<T> Instrument for T
[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>
[src]
pub fn in_current_span(self) -> Instrumented<Self>
[src]
impl<T> Instrument for T
[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>
[src]
pub fn in_current_span(self) -> Instrumented<Self>
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<T> ToString for T where
T: Display + ?Sized,
[src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,