[−][src]Struct actix_web::Query
Extract typed information from the request's query.
Example
#[macro_use] extern crate serde_derive; use actix_web::{App, Query, http}; #[derive(Debug, Deserialize)] pub enum ResponseType { Token, Code } #[derive(Deserialize)] pub struct AuthRequest { id: u64, response_type: ResponseType, } // use `with` extractor for query info // 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: Query<AuthRequest>) -> String { format!("Authorization request for client with id={} and type={:?}!", info.id, info.response_type) } fn main() { let app = App::new().resource( "/index.html", |r| r.method(http::Method::GET).with(index)); // <- use `with` extractor }
Methods
impl<T> Query<T>
[src]
pub fn into_inner(self) -> T
[src]
Deconstruct to a inner value
Trait Implementations
impl<T, S> FromRequest<S> for Query<T> where
T: DeserializeOwned,
[src]
T: DeserializeOwned,
type Config = QueryConfig<S>
Configuration for conversion process
type Result = Result<Self, Error>
Future that resolves to a Self
fn from_request(req: &HttpRequest<S>, cfg: &Self::Config) -> Self::Result
[src]
fn extract(req: &HttpRequest<S>) -> Self::Result
[src]
Convert request to a Self Read more
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]
Compares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self
1.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
)Returns max if self is greater than max, and min if self is less than min. Otherwise this will return self. Panics if min > max. Read more
impl<T: Eq> Eq for Query<T>
[src]
impl<T> DerefMut for Query<T>
[src]
impl<T: Display> Display for Query<T>
[src]
impl<T: Debug> Debug for Query<T>
[src]
impl<T> Deref for Query<T>
[src]
Auto Trait Implementations
Blanket Implementations
impl<T, U> Into 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> From for T
[src]
impl<T, U> TryFrom 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> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto 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> Erased for T
impl<Q, K> Equivalent for Q where
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,
[src]
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,