Function stringify

Source
pub fn stringify(query: QueryParams<'_>) -> String
Expand description

Produces a URL query string from a given query by iterating through the vec.

§Examples

extern crate querystring;

assert_eq!(querystring::stringify(vec![("foo", "bar"), ("baz", "qux")]), "foo=bar&baz=qux&");