[][src]Struct actix_web::web::Query

pub struct Query<T>(_);

Extract typed information from from the request's query.

Example

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

#[derive(Debug, Deserialize)]
pub enum ResponseType {
   Token,
   Code
}

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

// Use `Query` extractor for query information.
// 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: web::Query<AuthRequest>) -> String {
    format!("Authorization request for client with id={} and type={:?}!", info.id, info.response_type)
}

fn main() {
    let app = App::new().service(
       web::resource("/index.html").route(web::get().to(index))); // <- use `Query` extractor
}

Methods

impl<T> Query<T>[src]

pub fn into_inner(self) -> T[src]

Deconstruct to a inner value

pub fn from_query(query_str: &str) -> Result<Self, QueryPayloadError> where
    T: DeserializeOwned
[src]

Get query parameters from the path

Trait Implementations

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

Extract typed information from from the request's query.

Example

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

#[derive(Debug, Deserialize)]
pub enum ResponseType {
   Token,
   Code
}

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

// Use `Query` extractor for query information.
// 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: web::Query<AuthRequest>) -> String {
    format!("Authorization request for client with id={} and type={:?}!", info.id, info.response_type)
}

fn main() {
    let app = App::new().service(
       web::resource("/index.html")
           .route(web::get().to(index))); // <- use `Query` extractor
}

type Error = Error

The associated error which can be returned.

type Future = Result<Self, Error>

Future that resolves to a Self

type Config = QueryConfig

Configuration for this extractor

fn extract(req: &HttpRequest) -> Self::Future[src]

Convert request to a Self Read more

fn configure<F>(f: F) -> Self::Config where
    F: FnOnce(Self::Config) -> Self::Config
[src]

Create and configure config instance.

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

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

fn max(self, other: Self) -> Self1.21.0[src]

Compares and returns the maximum of two values. Read more

fn min(self, other: Self) -> Self1.21.0[src]

Compares and returns the minimum of two values. Read more

fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

Restrict a value to a certain interval. Read more

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

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

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

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

type Target = T

The resulting type after dereferencing.

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

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

Auto Trait Implementations

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

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

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> Erased for T