Dead-simple JSON serialization / deserialization
easy_json_serde
works in
conjunction with serde
. Decorate your
struct
s with serde
's Serialize
and Deserialize
, bring
easy_json_serde
's EasyJsonSerialize
and EasyJsonDeserialize
into view,
and easily serialize / deserialize to and from JSON.
```rust use easyjsonserde::{EasyJsonDeserialize, EasyJsonSerialize}; use serde::{Deserialize, Serialize}; use std::fs::File;
struct Dog { name: String, age: u8, }
fn main() -> Result<(), Box
{
let rufus = Dog {
name: "Rufus".to_string(),
age: 10,
};
let json_file = File::create(file_name)?;
json_file.save(&rufus, " ")?;
}
let rufus: Dog = {
let mut json_file = File::open(file_name)?;
Dog::load(&mut json_file)?
};
Ok(())
}
```