#[derive(EachVariant)]
Derive method that returns each variant of an enum
```rust
extern crate enumeachvariant_derive;
enum Thing { One, Two, Three, Four, }
let all: Vec
assert_eq!(all, vec![Thing::One, Thing::Two, Thing::Three, Thing::Four]); ```
Only works on enums where no variants have associated values. So we wouldn't be able to use it for this enum:
rust
enum TrainStatus {
OnTime,
DelayedBy(std::time::Duration),
}