boolenum 0.1.0

Derive From<bool> and Into<bool> for your boolean enums
Documentation
1
2
3
4
5
6
7
8
error: BoolEnum can only be used on enums with unit-like variants

  = help: try `enum EnumWithData { No, Yes }`

 --> $DIR/bad-enum-with-data.rs:5:5
  |
5 |     Yes(String),
  |     ^^^