Before using this crate, please evaluate quickcheck's official derive crate.
This crate adds a derive for the Arbitrary
trait from the quickcheck
crate.
You need the following dependencies in your Cargo.toml
:
quickcheck
>= 0.7rand
```rust
extern crate quickcheck_derive;
struct Data { foo: i32, bar: String, } ```