#serialization #url #url-parameters #serde-derive #type #http #traits

url_params_serializer

Allows serialization of types to URL GET parameters

2 releases

0.1.1 Dec 23, 2018
0.1.0 Dec 23, 2018

#1945 in Encoding

Download history 21/week @ 2023-11-21 29/week @ 2023-11-28 36/week @ 2023-12-05 25/week @ 2023-12-12 66/week @ 2023-12-19 1/week @ 2023-12-26 4/week @ 2024-01-09 12/week @ 2024-01-16 83/week @ 2024-01-23 15/week @ 2024-01-30 29/week @ 2024-02-06 66/week @ 2024-02-13 27/week @ 2024-02-20 39/week @ 2024-02-27 12/week @ 2024-03-05

150 downloads per month

Apache-2.0

22KB
498 lines

url_params_serializer

Allows the serialization of types which implement Serde's Serializer trait to HTTP GET query parameters. Typical usage:

use serde_derive::Serialize;
use url::Url;
use url_params_serializer::to_url_params;

#[derive(Serialize)]
struct Params {
    bar: &'static str;
    baz: usize
}

let params = Params { bar: "spam", baz: 5 };
let url = Url::parse_with_params("https://foo.com", to_url_params(params));

assert_eq!(url.into_string(), "https://foo.com/?bar=spam&baz=5");

Some more complex types can be serialized too; see the documentation for to_url_params for more information.


lib.rs:

Allows the serialization of types which implement Serde's Serializer trait to HTTP GET query parameters. Typical usage:

use serde_derive::Serialize;
use url::Url;
use url_params_serializer::to_url_params;

#[derive(Serialize)]
struct Params {
    bar: &'static str,
    baz: usize,
}

let params = Params { bar: "spam", baz: 5 };
let url = Url::parse_with_params("https://foo.com", to_url_params(params)).unwrap();

assert_eq!(url.into_string(), "https://foo.com/?bar=spam&baz=5");

Some more complex types can be serialized too; see the documentation for to_url_params for more information.

Dependencies

~110–350KB