quickcheck_derive 0.1.0

Derives quickcheck traits
Documentation

Usage

#[macro_use]
extern crate quickcheck_derive;
extern crate quickcheck;

#[derive(Arbitrary,Clone)]
struct Data {
    foo: i32,
    bar: String,
}