Expand description
Parser and serializer for theapplication/x-www-form-urlencoded
syntax,as used by HTML forms.
Converts between a string (such as an URL’s query string)and a sequence of (name, value) pairs.
Structs§
- Byte
Serialize - Return value of
byte_serialize()
. - Parse
- The return type of
parse()
. - Parse
Into Owned - Like
Parse
, but yields pairs ofString
instead of pairs ofCow<str>
. - Serializer
- The
application/x-www-form-urlencoded
serializer.
Traits§
Functions§
- byte_
serialize - The
application/x-www-form-urlencoded
byte serializer. - parse
- Convert a byte string in the
application/x-www-form-urlencoded
syntaxinto a iterator of (name, value) pairs.