[−][src]Struct serde_qs::actix::QsQuery
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]
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]
T: DeserializeOwned,
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
fn from_request(req: &HttpRequest, _: &mut Payload) -> Self::Future
[src]
fn extract(req: &HttpRequest) -> Self::Future
fn configure<F>(f: F) -> Self::Config where
F: FnOnce(Self::Config) -> Self::Config,
F: FnOnce(Self::Config) -> Self::Config,
impl<T: Ord> Ord for QsQuery<T>
[src]
fn cmp(&self, other: &QsQuery<T>) -> Ordering
[src]
#[must_use]fn max(self, other: Self) -> Self
1.21.0[src]
#[must_use]fn min(self, other: Self) -> Self
1.21.0[src]
#[must_use]fn clamp(self, min: Self, max: Self) -> Self
[src]
impl<T: PartialEq> PartialEq<QsQuery<T>> for QsQuery<T>
[src]
impl<T: PartialOrd> PartialOrd<QsQuery<T>> for QsQuery<T>
[src]
fn partial_cmp(&self, other: &QsQuery<T>) -> Option<Ordering>
[src]
fn lt(&self, other: &QsQuery<T>) -> bool
[src]
fn le(&self, other: &QsQuery<T>) -> bool
[src]
fn gt(&self, other: &QsQuery<T>) -> bool
[src]
fn ge(&self, other: &QsQuery<T>) -> bool
[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,
T: RefUnwindSafe,
impl<T> Send for QsQuery<T> where
T: Send,
T: Send,
impl<T> Sync for QsQuery<T> where
T: Sync,
T: Sync,
impl<T> Unpin for QsQuery<T> where
T: Unpin,
T: Unpin,
impl<T> UnwindSafe for QsQuery<T> where
T: UnwindSafe,
T: UnwindSafe,
Blanket Implementations
impl<T, A, P> Access<T> for P where
A: Access<T>,
P: Deref<Target = A>,
[src]
A: Access<T>,
P: Deref<Target = A>,
type Guard = <A as Access<T>>::Guard
A guard object containing the value and keeping it alive. Read more
fn load(&self) -> <P as Access<T>>::Guard
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, A> DynAccess<T> for A where
A: Access<T>,
<A as Access<T>>::Guard: 'static,
[src]
A: Access<T>,
<A as Access<T>>::Guard: 'static,
impl<Q, K> Equivalent<K> for Q where
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,
[src]
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,
fn equivalent(&self, key: &K) -> bool
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToString for T where
T: Display + ?Sized,
[src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,