pub fn quote_plus(s: &str) -> StringExpand description
urllib.parse.quote_plus(s, safe='') over the string’s UTF-8 bytes:
the ALWAYS-SAFE set (ASCII alphanumerics plus _.-~) stays literal,
a space becomes +, and every other byte becomes uppercase %XX.