rust-cookbook/README.md
2017-02-25 03:11:20 -05:00

750 B

#JSON

##JSON implementation in Rust:

json


#[macro_use]
extern crate json;

fn main() {

let parsed = json::parse(r#"

{
    "code": 200,
    "success": true,
    "payload": {
        "features": [
            "awesome",
            "easyAPI",
            "lowLearningCurve"
        ]
    }
}

"#).unwrap();

let instantiated = object!{
    "code" => 200,
    "success" => true,
    "payload" => object!{
        "features" => array![
            "awesome",
            "easyAPI",
            "lowLearningCurve"
        ]
    }
};

assert_eq!(parsed, instantiated);

}

License

MIT/Apache-2.0