Enum-Derived is a collection of derive macros that extend the functionality of enums
Rand allows for a random variant of an enum to be generated. This can be particularly useful when testing and the specific variant isn't important.
```rust use enum_derived::Rand;
pub enum Dna { A, C, T, G }
fn main() {
let base = Dna::rand();
println!("Random Base: ${base:?}");
} ```
Two examples where the rand
method is only available in tests.
Vehicle::rand()
is not available in main()
```compile_fail
use enum_derived::Rand;
pub enum Vehicle { Car, Truck, Motorbike, }
fn main() { let vehicle = Vehicle::rand(); }
```
Vehicle::rand()
is available in the tests
module
```rust
use enum_derived::Rand;
pub enum Vehicle { Car, Truck, Motorbike, }
mod tests { use super::*;
#[test]
fn random_vehicle() {
let vehicle = Vehicle::rand();
}
} ```