[][src]Struct actix_web_validator::ValidatedQuery

pub struct ValidatedQuery<T>(pub T);

Extract and validate typed information from the request's query.

For query decoding uses serde_urlencoded crate QueryConfig allows to configure extraction process.

Example

use actix_web::{web, App};
use serde_derive::Deserialize;
use actix_web_validator::ValidatedQuery;
use validator::Validate;
use validator_derive::Validate;

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

#[derive(Deserialize, Validate)]
pub struct AuthRequest {
    #[validate(range(min = 1000, max = 9999))]
    id: u64,
    response_type: ResponseType,
}

// Use `Query` extractor for query information (and destructure it within the signature).
// This handler gets called only if the request's query string contains a `id` and
// `response_type` fields.
// The correct request for this handler would be `/index.html?id=19&response_type=Code"`.
fn index(web::Query(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
}

Implementations

impl<T> ValidatedQuery<T> where
    T: Validate
[src]

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

Deconstruct to an inner value.

Trait Implementations

impl<T> AsRef<T> for ValidatedQuery<T>[src]

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

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

type Target = T

The resulting type after dereferencing.

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

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

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

impl<T> FromRequest for ValidatedQuery<T> where
    T: DeserializeOwned + Validate
[src]

Extract typed information from the request's query.

Example

use actix_web::{web, App};
use serde_derive::Deserialize;
use actix_web_validator::ValidatedQuery;
use validator::Validate;
use validator_derive::Validate;

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

#[derive(Deserialize, Validate)]
pub struct AuthRequest {
    #[validate(range(min = 1000, max = 9999))]
    id: u64,
    response_type: ResponseType,
}

// Use `Query` extractor for query information (and destructure it within the signature).
// This handler gets called only if the request's query string contains a `id` and
// `response_type` fields.
// The correct request for this handler would be `/index.html?id=19&response_type=Code"`.
fn index(web::Query(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 from_request(req: &HttpRequest, _: &mut Payload) -> Self::Future[src]

Builds Query struct from request and provides validation mechanism

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

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

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

impl<T> StructuralEq for ValidatedQuery<T>[src]

impl<T> StructuralPartialEq for ValidatedQuery<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for ValidatedQuery<T> where
    T: RefUnwindSafe

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

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

impl<T> Unpin for ValidatedQuery<T> where
    T: Unpin

impl<T> UnwindSafe for ValidatedQuery<T> where
    T: UnwindSafe

Blanket Implementations

impl<T, A, P> Access<T> for P where
    A: Access<T>,
    P: Deref<Target = A>, 
[src]

type Guard = <A as Access<T>>::Guard

A guard object containing the value and keeping it alive. Read more

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

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

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

impl<T, A> DynAccess<T> for A where
    A: Access<T>,
    <A as Access<T>>::Guard: 'static, 
[src]

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

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

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

impl<T> ToString for T where
    T: Display + ?Sized
[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<V, T> VZip<V> for T where
    V: MultiLane<T>,