Function url::form_urlencoded::parse_bytes
[-]
[+]
[src]
pub fn parse_bytes(input: &[u8], encoding_override: Option<EncodingRef>, use_charset: bool, isindex: bool) -> Option<Vec<(String, String)>>
Convert a byte string in the application/x-www-form-urlencoded
format
into a vector of (name, value) pairs.
Arguments:
encoding_override
: The character encoding each name and values is decoded as after percent-decoding. Defaults to UTF-8.use_charset
: The use charset flag. If in doubt, set tofalse
.isindex
: The isindex flag. If in doubt, set tofalse
.