rand_derive

Crates.iorand_derive
lib.rsrand_derive
version0.5.0
sourcesrc
created_at2016-05-02 20:36:57.168714
updated_at2018-09-24 11:21:08.222501
description`#[derive(Rand)]` macro (deprecated).
homepagehttps://github.com/rust-random/rand/tree/rand_derive/rand-derive
repositoryhttps://github.com/rust-random/rand
max_upload_size
id4956
size7,638
Alex Crichton (alexcrichton)

documentation

https://docs.rs/rand_derive

README

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>());
Commit count: 3215

cargo fmt