tojson_macros 0.3.0

A simple syntax extension generates default ToJson impl
docs.rs failed to build tojson_macros-0.3.0
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: tojson_macros-0.3.4

tojson_macros

This is a Rust syntax extension generates default ::rustc_serialize::json::ToJson implementation for you. This library now uses macros 1.1 for code generation. However it still requires rust nightly to build on.

Build Status

Crate

tojson_macros = "^0.3"

Example

Simply add #[derive(ToJson)] to your struct. Currently only Struct is supported.

#![feature(rustc_macro)]

#[macro_use]
extern crate tojson_macros;

extern crate rustc_serialize;

use rustc_serialize::json::ToJson;

#[derive(ToJson)]
struct Person {
    name: String,
    age: u8
}

let p = Person { name: "Ning".to_string(), age: 28u8 };
println!("{}", p.to_json());

License

Licensed under either of

Contribution

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.