[][src]Struct gotham::extractor::NoopQueryStringExtractor

pub struct NoopQueryStringExtractor;

A QueryStringExtractor that does not extract/store any data.

This is the default QueryStringExtractor which is applied to a route when no other QueryStringExtractor is provided. It ignores any query parameters, and always succeeds during deserialization.

Trait Implementations

impl StaticResponseExtender for NoopQueryStringExtractor[src]

type ResBody = Body

The type of the response body. Almost always hyper::Body.

impl StateData for NoopQueryStringExtractor[src]

impl Debug for NoopQueryStringExtractor[src]

impl<'de> Deserialize<'de> for NoopQueryStringExtractor[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T, U> Into<U> for T where
    U: From<T>, 
[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<T> Borrow<T> for T where
    T: ?Sized
[src]

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

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

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T