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(Debug, Deserialize)]
pub enum ResponseType {
   Token,
   Code
}

#[derive(Deserialize)]
pub struct AuthRequest {
   id: u64,
   response_type: ResponseType,
}

// use `with` extractor for query info
// this handler get called only if request's query contains `username` field
// The correct request for this handler would be `/index.html?id=64&response_type=Code"`
fn index(info: Query<AuthRequest>) -> String {
    format!("Authorization request for client with id={} and type={:?}!", info.id, info.response_type)
}

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]

Deconstruct to a inner value

Trait Implementations

impl<T: PartialEq> PartialEq for Query<T>
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<T: Eq> Eq for Query<T>
[src]

impl<T: PartialOrd> PartialOrd for Query<T>
[src]

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl<T: Ord> Ord for Query<T>
[src]

This method returns an Ordering between self and other. Read more

Compares and returns the maximum of two values. Read more

Compares and returns the minimum of two values. Read more

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

The resulting type after dereferencing.

Important traits for &'a mut R

Dereferences the value.

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

Important traits for &'a mut R

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

Convert request to a Self

Convert request to a Self Read more

impl<T: Debug> Debug for Query<T>
[src]

Formats the value using the given formatter. Read more

impl<T: Display> Display for Query<T>
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

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

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