Rust-Programming-Cookbook/Chapter03/rand/rand_macros
packt-diwakar 1e5bd65fe0 Code Files Added 2017-07-31 12:29:18 +05:30
..
src Code Files Added 2017-07-31 12:29:18 +05:30
tests Code Files Added 2017-07-31 12:29:18 +05:30
Cargo.toml Code Files Added 2017-07-31 12:29:18 +05:30
README.md Code Files Added 2017-07-31 12:29:18 +05:30

README.md

#[derive]-like functionality for the rand::Rand trait.

Example

#![feature(plugin)]

#![plugin(rand_macros)]

extern crate rand;

#[derive_Rand]
struct Foo {
    x: u8,
    y: isize
}

#[derive_Rand]
enum Bar {
    X(char),
    Y(f64)
}