| Crates.io | json_map_serializer |
| lib.rs | json_map_serializer |
| version | 0.1.3 |
| created_at | 2022-09-07 16:24:17.475409+00 |
| updated_at | 2022-09-07 16:24:17.475409+00 |
| description | Crate for easy serializing json maps from sequense of pairs |
| homepage | |
| repository | https://github.com/Trard/json_map_serializer |
| max_upload_size | |
| id | 660483 |
| size | 19,158 |
This library provides to_map for easy serializing maps and sequenses of pairs to serde_json::Map
use json_map_serializer::to_map;
use serde_json::Value;
fn main() {
let query = (("foo", "bar"), ("baz", "qux"));
let map = to_map(query).unwrap();
let mut result = serde_json::Map::new();
result.insert(String::from("foo"), Value::String(String::from("bar")));
result.insert(String::from("baz"), Value::String(String::from("qux")));
assert_eq!(result, map);
}