[][src]Macro json::value

macro_rules! value {
    ( null ) => { ... };
    ( [$( $token:tt )*] ) => { ... };
    ( {$( $token:tt )*} ) => { ... };
    { $value:expr } => { ... };
}

Helper crate for converting types into JsonValue. It's used internally by the object! and array! macros.