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

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 Debug for NoopQueryStringExtractor
[src]

[src]

Formats the value using the given formatter. Read more

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl StateData for NoopQueryStringExtractor
[src]

impl StaticResponseExtender for NoopQueryStringExtractor
[src]

[src]

Extend the response.

Auto Trait Implementations