The package includes:
The package support obj!, val!, and arr! macros to write any json object in much more convinces way ( Write like JavaScript Object syntax and getting completion error).
``` // basic usage
let dog = obj! {
color: "brown",
type: "Akbash",
eating : [
"WholeHearted",
"Royal Canin"
]
};
// advance usage
let key = "var_key";
let age = 45;
let like_banana = true;
let person = obj! {
name: "jhon",
// use value name as a key
age,
like_banana,
like_rust: true,
like_go: null,
emails : [
"some@gmail.com",
"some2@gmail.com"
],
// you can flat obj into - the dog is copy not moved
...dog
address: {
city: "somewhere",
zip: 5612
},
"literal": true,
[key]: "var_key",
age: 56
};
```
Create json::Val enum from any valid json format
```
let str = val!("some string"); let num = val!(45); let bool = val!(true); let null = val!(null); let array = val!(["string", 45]);
let json = val!({ key:"string", num:45 });
```
Create a Vec\ ```
// the type is Vec // Extend the arr2 by ...arr
let arr2 = arr![
...arr,
"val"
]; ``` Form any numerical number, String, &str, boolean and HashMap ```
let str:Val = "some string".into();
let num:Val = 78.into();
let bool:Val = true.into();
let array:Val = vec!["string".into(), 45.into()]; // the short way is to use macros (obj!, val! and arr!) let str = val!("some string");
let num = val!(54);
let bool = val!(true);
let null = val!(null);
let array_val = val!(["string", 45]);
// the type is Vec let obj_val = val!({
key:"string",
num:45
});
// the type is Object
let obj = obj!{
key:"string",
num:45
}; ``` Parse a json from a string ```
use json::{Val, Json}; fn main() { let mut j = Obj::new(); let fromstring = Obj::from(
r#"{
"number": 56,
"string": "some string\" string",
"booleantrue": true,
"booleanfalse": false,
"null": null,
"obj": {
"key1": 456
},
"emptyobj": {},
"emptyobjnew_line": { "#,
); // Print either json or err
if let Ok(Val::Obj(v)) = fromstring {
println!("{:?}", v);
} else if let Err(e) = fromstring {
println!("{:?}", e)
}
}
``` ```
let val = Val::from("[3, 5, null]"); if let Ok(v) = val) {
assert_eq!(v, Val::Array(vec![Val::Num(3.0), Val::Num(5.0), Val::Null])) // true
}
``` Any donation is welcome, open Issues, PR and request for new features. When using in an obj! macro with a big object you need to config MITConvertors
Parser
},
"nested_obj" : {
"nested1": {
"nested2": {
"key1": "some value",
"key2": "anther value"
}
}
},
"array": [4564, "some string", {"bla":90, "blo": "sfsf"}, null, true, false, [], [4,5]],
"key": 2
}
Contribute
Limitation
![recursion_limit = "512"]
Todo
Licence