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

Construct a expry::DecodedValue from a JSON-like literal.

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

Variables or expressions can be interpolated into the JSON literal. Any type interpolated into an array element or object value must implement the From<_> 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.

let code = 200;
let features = vec!["expry", "json"];

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

Trailing commas are allowed inside both arrays and objects.

let value = value!([
    "notice",
    "the",
    "trailing",
    "comma -->",
]);

Adapted from https://github.com/serde-rs/json/blob/master/src/macros.rs.