[][src]Macro simd_json::json

macro_rules! json {
    ($($json:tt)+) => { ... };
}

Taken from: https://github.com/serde-rs/json/blob/5b5f95831d9e0d769367b30b76a686339bffd209/src/macros.rs Construct a simdjson::Value from a JSON literal.

This code runs with edition 2018
let value = json!({
    "code": 200,
    "success": true,
    "payload": {
        "features": [
            "serde",
            "json"
        ]
    }
});

Variables or expressions can be interpolated into the JSON literal. Any type interpolated into an array element or object value must implement Serde's Serialize trait, while any type interpolated into a object key must implement Into<String>. If the Serialize implementation of the interpolated type decides to fail, or if the interpolated type contains a map with non-string keys, the json! macro will panic.

This code runs with edition 2018
let code = 200;
let features = vec!["serde", "json"];

let value = json!({
    "code": code,
    "success": code == 200,
    "payload": {
        features[0]: features[1]
    }
});

Trailing commas are allowed inside both arrays and objects.

This code runs with edition 2018
let value = json!([
    "notice",
    "the",
    "trailing",
    "comma -->",
]);

It works for both Borrowed and owned values when used with .into()

This code runs with edition 2018
let owned_value: OwnedValue = json!({
    "code": 200,
    "success": true,
    "payload": {
        "features": [
            "serde",
            "json"
        ]
    }
});

let borrowed_value: BorrowedValue = json!({
    "code": 200,
    "success": true,
    "payload": {
        "features": [
            "serde",
            "json"
        ]
    },
    "empty_obj": {},
    "empty_array": [],
}).into();