Skip to main content

json

Macro json 

Source
macro_rules! json {
    (null) => { ... };
    ([$($tokens:tt)*]) => { ... };
    ({$($tokens:tt)*}) => { ... };
    ($value:expr) => { ... };
}
Expand description

Constructs a Value with JSON-like syntax.