Struct urlencoded::UrlEncodedQuery
[−]
[src]
pub struct UrlEncodedQuery;
Plugin for Request
that extracts URL encoded data from the URL query string.
Use it like this: req.get_ref::<UrlEncodedQuery>()
Trait Implementations
impl Key for UrlEncodedQuery
[src]
impl<'a, 'b> Plugin<Request<'a, 'b>> for UrlEncodedQuery
[src]
type Error = UrlDecodingError
The error type associated with this plugin.
fn eval(req: &mut Request) -> QueryResult
Create the plugin from an instance of the extended type. Read more