This crate adds a derive for the Arbitrary trait from the quickcheck crate.
Arbitrary
quickcheck
```rust
extern crate quickcheck_derive; extern crate quickcheck;
struct Data { foo: i32, bar: String, } ```