1 个不稳定版本
使用旧的Rust 2015
0.2.0 | 2018年2月19日 |
---|
#1904 在 数据结构
26 每月下载量
9KB
54 行
dot_json
将serde_json::Map
结构作为"dot映射"进行操作的实用程序。
[dependencies]
dot_json = "0.2"
value_to_dot
另请参阅: https://github.com/serde-rs/json#constructing-json-values
#[macro_use]
extern crate serde_json;
extern crate dot_json;
use dot_json::value_to_dot;
use serde_json::{Map, Value};
fn main() {
let obj = json!({
"foo": "Lorem ipsum",
"bar": [123, null, { "baz": "Dolor sit amet" }],
"qux": {
"deep": {
"one": true,
"two": false,
}
}
});
let obj_dot = value_to_dot(&obj);
// obj_dot is now: {
// "foo": "Lorem ipsum",
// "bar.0": 123,
// "bar.1": null,
// "bar.2.baz": "Dolor sit amet",
// "qux.deep.one": true,
// "qux.deep.two": false
// }
assert_eq!(Value::Null, obj_dot["bar.1"]);
assert_eq!(Value::Bool(false), obj_dot["qux.deep.two"]);
let arr = json!([
{ "foo", false },
null
]);
let arr_dot = value_to_dot(&arr);
assert_eq!(Value::Bool(false), arr["0.foo"]);
assert_eq!(Value::Null, arr["1"]);
}
map_to_dot_map
由value_to_dot
和arr_to_dot_map
使用,将深层的serde_json::Map
转换为浅层的dot映射。
arr_to_dot_map
由value_to_dot
使用,将深层的serde_json::Value::Array
向量转换为浅层的dot映射。
依赖项
~355–760KB
~17K SLoC