Skip to main content

json

Macro json 

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