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