Function url::form_urlencoded::parse
[−]
[src]
pub fn parse(input: &[u8]) -> Vec<(String, String)>
Convert a byte string in the application/x-www-form-urlencoded format
into a vector of (name, value) pairs.
Use parse(input.as_bytes()) to parse a &str string.
The names and values are URL-decoded. For instance, %23first=%25try%25 will be
converted to [("#first", "%try%")].