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.