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.
The rand
crates rand::random
method must have an implementation for each type used in a variant to be able to generate the enum.
```rust use enum_derived::Rand;
pub enum Example {
Empty,
Integers(u8, u16, u32, u64, usize, i8, i16, i32, i64, isize),
Character(char),
Boolean(bool),
FloatingPoint(f32, f64),
MaximumArrayLength([u8; 32]),
LongTuple((u8, u16, u32, u64, usize, i8, i16, i32, i64, isize, f32, f64)),
Options(Option
fn main() {
let example = Example::rand();
println!("Example: ${example:?}");
} ```
Two examples where the rand
method is only available in tests.
Vehicle::rand()
is not available in main()
```rust 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();
}
} ```