Struct actix_web::Query [] [src]

pub struct Query<T>(_);

Extract typed information from from the request's query.

Example

#[macro_use] extern crate serde_derive;
use actix_web::{App, Query, http};

#[derive(Deserialize)]
struct Info {
    username: String,
}

// use `with` extractor for query info
// this handler get called only if request's query contains `username` field
fn index(info: Query<Info>) -> String {
    format!("Welcome {}!", info.username)
}

fn main() {
    let app = App::new().resource(
       "/index.html",
       |r| r.method(http::Method::GET).with(index)); // <- use `with` extractor
}

Methods

impl<T> Query<T>
[src]

[src]

Deconstruct to a inner value

Trait Implementations

impl<T> Deref for Query<T>
[src]

The resulting type after dereferencing.

Important traits for &'a mut W
[src]

Dereferences the value.

impl<T> DerefMut for Query<T>
[src]

Important traits for &'a mut W
[src]

Mutably dereferences the value.

impl<T, S> FromRequest<S> for Query<T> where
    T: DeserializeOwned
[src]

Configuration for conversion process

Future that resolves to a Self

[src]

Convert request to a Self

[src]

Convert request to a Self Read more

Auto Trait Implementations

impl<T> Send for Query<T> where
    T: Send

impl<T> Sync for Query<T> where
    T: Sync