# filterable-enum Filterable wrapper for discriminated unions(DU) in rust. ## What is this? In some cases, you may want to filter a DU by a bitmask to check if it matches a subset of all variants. This crate provides a derive macro to generate a filterable wrapper for a DU. Ideally, I think this whole crate should be unnecessary. Rust already stores a tag for representing the variant of a DU. However, Rust does not expose this tag to the user, so I cannot really use that tag as a bitflag. ## How to use See the [tests](https://github.com/kxxt/filterable-enum/blob/main/tests/derive_impl.rs) for examples. To add more derives to the `Kind` enum, use `#[filterable_enum(kind_extra_derive=DeriveMacroYouWant)]`. To add more attrs to the `Kind` enum, use `#[filterable_enum(kind_extra_attrs="ATTR")]` like `#[filterable_enum(kind_extra_attrs="strum(serialize_all = \"kebab-case\")")]`. ## Note This is the first procedural macro I've ever written, so I'm not sure if I'm doing it idiomatic or right. Feel free to open an issue or PR if you have any suggestions or improvements.