macro_rules! enumerable_enum {
($(#[$meta:meta])* $name:ident {
$($(#[$variant_meta:meta])* $variant:ident),*,
}) => { ... };
}
Expand description
Generates an enum value that supports an |all_variants| method that returns all possible values of the enum.