Struct urlencoded::UrlEncodedBody
[−]
[src]
pub struct UrlEncodedBody;
Plugin for Request
that extracts URL encoded data from the request body.
Use it like this: req.get_ref::<UrlEncodedBody>()
Trait Implementations
impl Key for UrlEncodedBody
[src]
impl<'a, 'b> Plugin<Request<'a, 'b>> for UrlEncodedBody
[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