Expand description
Parser and serializer for the application/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 ofStringinstead of pairs ofCow<str>. - Serializer
- The
application/x-www-form-urlencodedserializer.
Traitsยง
Functionsยง
- append_
encoded ๐ - append_
key_ ๐only - append_
pair ๐ - append_
separator_ ๐if_ needed - byte_
serialize - The
application/x-www-form-urlencodedbyte serializer. - byte_
serialized_ ๐unchanged - decode ๐
- decode_
utf8_ ๐lossy - encode ๐
- parse
- Convert a byte string in the
application/x-www-form-urlencodedsyntax into a iterator of (name, value) pairs. - replace_
plus ๐ - Replace bโ+โ with bโ โ
- string ๐