enum const trait
```rust use enum_const::EnumConst;
enum Foo { X = 1, Y = 2, Z, }
fn itworks() { asserteq!(Some(Foo::X), Foo::fromconstisize(1)); asserteq!(Some(1isize), Foo::X.getconst_isize()); } ```