pub fn parse_query(input: &str) -> IResult<&str, HashMap<String, String>>Expand description
Parse a URL-encoded query string into a key/value map.
Keys and values are percent-decoded. An empty input yields an empty map.
ยงErrors
Returns a nom error if any key/value pair cannot be parsed.