[][src]Function net::url::query_unescape

pub fn query_unescape(s: &str) -> Result<String, Error>

query_unescape does the inverse transformation of query_escape, converting each 3-byte encoded substring of the form "%AB" into the hex-decoded byte 0xAB. It returns an error if any % is not followed by two hexadecimal digits.