BoolEnum
is a derive macro to create ergonomic boolean enums with less boilerplate.
It generates From<bool>
, Into<bool>
and Not
impls for your enum.
```rust use boolenum::BoolEnum;
// Variant names can be Yes and No (in any order) ...
enum UseColors { No, Yes, }
// or True and False
enum ShowExpired { True, False, }
fn printthings(usecolors: UseColors, showexpired: ShowExpired) {
if usecolors.into() { // Into
fn main() { print_things(UseColors::Yes, ShowExpired::False) } ```
Boolean enums are useful for differentiating between boolean arguments to a function,
so you can write something like encode(&bytes, Encrypt::Yes, Compress::No)
instead of encode(&bytes, true, false)
.
Goes well with structopt, for type-safe handling of command-line flags:
```rust use boolenum::BoolEnum; use structopt::StructOpt;
enum Verbose { No, Yes }
enum Colors { No, Yes }
struct Opt {
#[structopt(short, long, parse(fromflag))]
verbose: Verbose, // works because Verbose implements From
fn main() { let opt = Opt::fromargs(); dothing(opt.verbose, opt.colors); }
fn do_thing(verbose: Verbose, colors: Colors) { if verbose.into() { } if colors.into() { } } ```
BoolEnum
works on enums with two unit variants, named either Yes and No, or True and False. The order of the variants in the enum doesn't matter.
License: MIT OR Apache-2.0