boolenum 0.1.0

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

#[derive(BoolEnum)]
pub enum ExtraFields {
    Yes,
    No,
    FileNotFound,
}

fn main() {}