3 releases
0.1.2 | Oct 10, 2024 |
---|---|
0.1.1 | Oct 10, 2024 |
0.1.0 | Apr 26, 2024 |
#1058 in Rust patterns
72 downloads per month
Used in tracexec
5KB
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 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.
Dependencies
~1.7–2.3MB
~48K SLoC