[−][src]Struct actix_web::web::Query
Extract typed information from the request's query.
Note: A query string consists of unordered key=value
pairs, therefore it cannot
be decoded into any type which depends upon data ordering e.g. tuples or tuple-structs.
Attempts to do so will fail at runtime.
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 (and destructure it within the signature). // This handler gets called only if the request's query string contains a `username` field. // The correct request for this handler would be `/index.html?id=64&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 }
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]
T: DeserializeOwned,
Get query parameters from the path
Trait Implementations
impl<T> FromRequest for Query<T> where
T: DeserializeOwned,
[src]
T: DeserializeOwned,
Extract typed information 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 from_request(req: &HttpRequest, _: &mut Payload) -> Self::Future
[src]
fn extract(req: &HttpRequest) -> Self::Future
[src]
fn configure<F>(f: F) -> Self::Config where
F: FnOnce(Self::Config) -> Self::Config,
[src]
F: FnOnce(Self::Config) -> Self::Config,
impl<T: Eq> Eq for Query<T>
[src]
impl<T: PartialOrd> PartialOrd<Query<T>> for Query<T>
[src]
fn partial_cmp(&self, other: &Query<T>) -> Option<Ordering>
[src]
fn lt(&self, other: &Query<T>) -> bool
[src]
fn le(&self, other: &Query<T>) -> bool
[src]
fn gt(&self, other: &Query<T>) -> bool
[src]
fn ge(&self, other: &Query<T>) -> bool
[src]
impl<T: PartialEq> PartialEq<Query<T>> for Query<T>
[src]
impl<T: Ord> Ord for Query<T>
[src]
fn cmp(&self, other: &Query<T>) -> Ordering
[src]
fn max(self, other: Self) -> Self
1.21.0[src]
fn min(self, other: Self) -> Self
1.21.0[src]
fn clamp(self, min: Self, max: Self) -> Self
[src]
impl<T> Deref for Query<T>
[src]
impl<T> DerefMut for Query<T>
[src]
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,
T: Send,
impl<T> Unpin for Query<T> where
T: Unpin,
T: Unpin,
impl<T> Sync for Query<T> where
T: Sync,
T: Sync,
impl<T> UnwindSafe for Query<T> where
T: UnwindSafe,
T: UnwindSafe,
impl<T> RefUnwindSafe for Query<T> where
T: RefUnwindSafe,
T: RefUnwindSafe,
Blanket Implementations
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> From<T> for T
[src]
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<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
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> Erased for T
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,
fn vzip(self) -> V
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, 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,