Crate bonsaidb::client::url::form_urlencoded
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
- Return value of
byte_serialize(). - The return type of
parse(). - Like
Parse, but yields pairs ofStringinstead of pairs ofCow<str>.
Traits
Functions
- Convert a byte string in the
application/x-www-form-urlencodedsyntax into a iterator of (name, value) pairs.