tojson_macros

Crates.iotojson_macros
lib.rstojson_macros
version0.3.4
sourcesrc
created_at2015-04-19 11:27:53.258835
updated_at2017-02-21 13:49:10.361269
descriptionA simple syntax extension generates default ToJson impl
homepagehttps://github.com/sunng87/tojson_macros
repositoryhttps://github.com/sunng87/tojson_macros
max_upload_size
id1897
size16,600
Ning Sun (sunng87)

documentation

README

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(proc_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.

Commit count: 59

cargo fmt