classcharts 1.0.5

Unoffical classcharts library for rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
/// A very simple macro to create a url encoded form
#[macro_export]
macro_rules! new_params {
    ($($key:expr, $value:expr),*) => {
        {
            let mut body = url::form_urlencoded::Serializer::new(String::new());
            $(
                body.append_pair($key, $value);
            )*
            body.finish()
        }
    };
}