Skip to main content

json

Macro json 

Source
macro_rules! json {
    (null) => { ... };
    ([$($element:tt),* $(,)?]) => { ... };
    ({$($key:literal : $value:tt),* $(,)?}) => { ... };
    ($other:expr) => { ... };
}