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, Copy, Clone, Debug, PartialEq)]
pub enum WithValues {
    No = 0,
    Yes = 1,
}

fn main() {}