pub fn url_escape_u8(c: u8, buffer: &mut Vec<u8>) -> Option<&[u8]>
Expand description

Escapes a whole URL so only valid URL chars are inside the result. Not to be confused if you want to encode a random string as part of a URL (e.g. in a form), use url_encode_u8 for that.