Generate random data.
```rust use generate_random::GenerateRandom;
enum MyEnum { A, C(bool), B { x: u8, }, // Providing a weight allows changing the probabilities. // This variant is now twice as likely to be generated as the others. #[weight(2)] D, }
let mut rng = rand::threadrng(); let myvalue = MyEnum::generate_random(&mut rng); ```