boolenum 0.1.0

Derive From<bool> and Into<bool> for your boolean enums
Documentation
1
2
3
4
5
6
7
8
9
use boolenum::BoolEnum;

#[derive(BoolEnum)]
struct StructInsteadOfEnum {
    yes: bool,
    no: bool,
}

fn main() {}