[][src]Struct serde_qs::actix::QsQuery

pub struct QsQuery<T>(_);

Extract typed information from from the request's query.

Example

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

#[derive(Deserialize)]
pub struct UsersFilter {
   id: Vec<u64>,
}

// Use `QsQuery` extractor for query information.
// The correct request for this handler would be `/users?id[]=1124&id[]=88"`
fn filter_users(info: QsQuery<UsersFilter>) -> HttpResponse {
    info.id.iter().map(|i| i.to_string()).collect::<Vec<String>>().join(", ").into()
}

fn main() {
    let app = App::new().service(
       web::resource("/users")
           .route(web::get().to(filter_users)));
}

Implementations

impl<T> QsQuery<T>[src]

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

Deconstruct to a inner value

Trait Implementations

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

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

type Target = T

The resulting type after dereferencing.

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

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

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

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

type Error = ActixError

The associated error which can be returned.

type Future = Ready<Result<Self, ActixError>>

Future that resolves to a Self

type Config = QsQueryConfig

Configuration for this extractor

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

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

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

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

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

Auto Trait Implementations

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

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

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

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

impl<T> UnwindSafe for QsQuery<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>,