platform_value

Macro platform_value 

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

Construct a serde_platform_value::Value from a JSON literal.

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

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 platform_value! macro will panic.

let code = 200;
let features = vec!["serde", "platform_value"];

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

Trailing commas are allowed inside both arrays and objects.

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