This is a Rust syntax extension generates default ::rustc_serialize::json::ToJson
implementation for you. Note that this library relies on libsyntax
which is only available in nightly channel.
toml
tojson_macros = "^0.2"
Simply add #[derive(ToJson)]
to your struct.
```rust
extern crate rustc_serialize;
use rustc_serialize::json::ToJson;
struct Person { name: String, age: u8 }
let p = Person { name: "Ning".tostring(), age: 28u8 }; println!("{}", p.tojson()); ```
Licensed under either of
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.