Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /home/zhenxiangba/zhenxiangba.com/public_html/phproxy-improved-master/index.php on line 456
serde_macros 0.3.3 - Docs.rs
[go: Go Back, main page]

serde_macros 0.3.3

Macros to auto-generate implementations for the serde framework
1
2
3
4
5
6
7
8
9
10
11
12
#![feature(plugin)]
#![plugin(serde2_macros)]

extern crate serde2;

#[derive_serialize]
enum A {
    A,
    B,
}

fn main() {}