This crate adds a derive for the Arbitrary trait from the quickcheck crate.
Arbitrary
quickcheck
You need the following dependencies in your Cargo.toml:
Cargo.toml
rand
```rust
extern crate quickcheck_derive;
struct Data { foo: i32, bar: String, } ```