EnumIndex provides a small macro which implements EnumIndexGet, permitting the following:
```rust use enumindexrepr::{EnumIndex, EnumIndexGet};
enum Tag { Hello, World, How, Are, You, }
fn main() { assert_eq!(Tag::How.index(), 2); } ```