enum-tools 0.5.5

Automatically derive functions and trait implementations for enums
Documentation
1
2
3
4
5
6
7
8
9
10
11
error: only integer literals are allowed
  --> tests/compile-fail/not_integer.rs:10:5
   |
10 |     B = "6",
   |     ^

error[E0308]: mismatched types
  --> tests/compile-fail/not_integer.rs:10:9
   |
10 |     B = "6",
   |         ^^^ expected `i8`, found `&str`