Fast json encoder in rust, that does more at compile time, and less at run time. One notable feature is the ability to encode the structure of JSON objects in their type.
This allows for a very compact representation of objects in memory, and up to an order of magnitude better performance
than the traditional approach (used by serde's json!
marco, for instance) where JSON objects are stored in maps.
The goal of this library is to be as close as possible to the performance and memory footprint you would get by writing the json by hand in your source code and using string formatting to insert your dynamic values.
```rust fn writeobjbad(value: f32) -> String { format!("{\"value\":{}}", value) }
// Safer, but equivalent and not less efficient : fn writeobjgood(value: f32) -> String { ( jsonobject! { value } ).tojson_string() } ```
```rust extern crate jsonintype;
use jsonintype::*;
fn main() { let void = (); let list = jsonlist![42u8, true]; let dynamickey = "hello";
let json_val = json_object!{
void, list,
[dynamic_key]: "world"
};
/* The type of json_val is:
InlinedJSONObjectEntry<
(),
InlinedJSONObjectEntry<
JSONListElem<u8,
JSONListElem<JSONtrue,
JSONListEnd>>>,
JSONObjectEntry<
&str, &str,
JSONObjectEnd>>>
*/
assert_eq!(
r#"{"void":null,"list":[42,true],"hello":"world"}"#,
json_val.to_json_string()
);
} ```
The generated types have a very small memory footprint at runtime. You don't pay for the json structure, only for what you put in it !
In the next example, we store the following json structure on only two bytes:
json
{
"result_count" : 1,
"errors" : null,
"results" : [
{"answer":42, "ok":true}
]
}
rust
fn test_memory_size() {
let (result_count, answer) = (1u8, 42u8);
let my_val = json_object! {
result_count,
errors: null,
results: json_list![
json_object!{answer, ok: true}
]
};
// my_val weighs only two bytes, because we stored only 2 u8 in it
assert_eq!(2, ::std::mem::size_of_val(&my_val));
}
This library is generally faster than SERDE. Here are detailed comparison results on different json serialization tasks realized on an AMD Ryzen 5 1600X. See detailed benchmark results.
We use serde's
json!
and jsonintype's
json_object!
macro to encode a nested json object.
We encode a JSON structure composed of 8 nested objects, each of
which contains a single key, that is known at compile time.
The last nested object contains an integer n that is not known at compile time.
json
{"nested":{"nested":{"nested":{"nested":{"nested":{"nested":{"nested":{"nested":{"value":n}}}}}}}}}
json
{
"void": null,
"list": [1, 2, 3, 3],
"hello": "world"
}
#[derive(...)]
json
{
"void": null,
"list": [1, 2, 3, 3],
"hello": "world"
}
created from the following rust struct
```rust
struct MyObject {
void: (),
list: Vec
json_object!
macroJSONValue
traitJSONValue
trait for your type using the jsonintype_derive crate