Crate urlencoded

Source
Expand description

URL Encoded Plugin for Iron.

Parses “url encoded” data from client requests. Capable of parsing both URL query strings and POST request bodies.

Re-exports§

pub use UrlDecodingError::*;

Structs§

UrlEncodedBody
Plugin for Request that extracts URL encoded data from the request body.
UrlEncodedQuery
Plugin for Request that extracts URL encoded data from the URL query string.

Enums§

UrlDecodingError
An error representing the two possible errors that can occur during URL decoding.

Type Aliases§

QueryMap
Hashmap mapping strings to vectors of strings.
QueryResult
Result type for decoding query parameters.