1 2 3 4 5 6 7
macro_rules! from_json { ($type: ty, $json: tt) => ({ use serde_json; let x: $type = serde_json::from_value(json!($json)).expect("Expected json decoding"); x }) }