10 个版本
使用旧的 Rust 2015
0.1.10 | 2015年12月19日 |
---|---|
0.1.9 | 2015年8月31日 |
0.1.8 | 2015年5月25日 |
0.1.6 | 2015年4月18日 |
0.1.4 | 2015年2月19日 |
78 在 #rand
80 每月下载量
8KB
148 行
#[derive]
-like functionality for the rand::Rand
trait.
示例
#![feature(plugin)]
#![plugin(rand_macros)]
extern crate rand;
#[derive_Rand]
struct Foo {
x: u8,
y: isize
}
#[derive_Rand]
enum Bar {
X(char),
Y(f64)
}