5 releases (3 breaking)
Uses old Rust 2015
0.5.0 | Sep 24, 2018 |
---|---|
0.3.1 | Aug 23, 2017 |
0.3.0 | Jul 30, 2017 |
0.2.0 | Nov 21, 2016 |
0.1.0 | May 2, 2016 |
#92 in #rand
540 downloads per month
Used in 8 crates
7KB
91 lines
rand_derive
#[derive(Rand)]
functionality enabling sampling of random instances.
This crate is deprecated as of rand 0.5 since the Rand
trait has been
deprecated and since it appears to have very little use.
This crate has been updated to work with Rand 0.5, however note that it now
implements Distribution<Self> for Standard
instead of Rand
.
Usage
Add this to your Cargo.toml
:
[dependencies]
rand = "0.5"
rand_derive = "0.5"
and this to your crate root:
extern crate rand;
#[macro_use]
extern crate rand_derive;
Examples
#[derive(Rand)]
can be used on any struct
or enum
where all fields/variants implement rand::Rand
.
#[derive(Debug, Rand)]
struct Foo {
x: u16,
y: Option<f64>,
}
#[derive(Debug, Rand)]
enum Bar {
X{x: u8, y: isize},
Y([bool; 4]),
Z,
}
Now you can call the Rng::gen()
function on your custom types.
use rand::Rng;
let mut rng = rand::thread_rng();
println!("{:?}", rng.gen::<Foo>());
println!("{:?}", rng.gen::<Bar>());
Dependencies
~2MB
~42K SLoC