quickcheck_derive

Travis (.org) Crates.io

This crate adds a derive for the Arbitrary trait from the quickcheck crate.

Usage

```rust

[macro_use]

extern crate quickcheck_derive; extern crate quickcheck;

[derive(Arbitrary,Clone)]

struct Data { foo: i32, bar: String, } ```