'How to get the number of elements (variants) in an enum as a constant value?
Is there a way to extract the number of elements in an enum?
Simple example (with imaginary number_of_elements
method):
enum FooBar { A = 0, B, C, };
println!("Number of items: {}", FooBar.number_of_elements());
// "Number of items: 3"
In C I'd normally do...
enum FooBar { A = 0, B, C, };
#define FOOBAR_NUMBER_OF_ITEMS (C + 1)
However the Rust equivalent to this doesn't work:
enum FooBar { A = 0, B, C, };
const FOOBAR_NUMBER_OF_ITEMS: usize = (C as usize) + 1;
// Raises an error:
// unimplemented constant expression: enum variants
Including the last item in the enum is very inconvenient because matching enums will error if all members aren't accounted for.
enum FooBar { A = 0, B, C, FOOBAR_NUMBER_OF_ITEMS, };
Is there a way to get the number of items in an enum as a constant value?
Note: even though this isn't directly related to the question, the reason I was wanting this feature is I'm using the builder-pattern to construct a series of actions which only make sense to run once. For this reason I can use a fixed size array the size of the enum.
Solution 1:[1]
You can use procedural macros:
extern crate proc_macro;
extern crate syn;
#[macro_use]
extern crate quote;
use proc_macro::TokenStream;
#[proc_macro_derive(EnumVariantCount)]
pub fn derive_enum_variant_count(input: TokenStream) -> TokenStream {
let syn_item: syn::DeriveInput = syn::parse(input).unwrap();
let len = match syn_item.data {
syn::Data::Enum(enum_item) => enum_item.variants.len(),
_ => panic!("EnumVariantCount only works on Enums"),
};
let expanded = quote! {
const LENGTH: usize = #len;
};
expanded.into()
}
It is left as an excercise to the reader to ensure that this derive macro can be used multiple times within the same module.
To use the macro, just attach #[derive(EnumVariantCount)]
to your enum. There should now be a global constant named LENGTH
.
Solution 2:[2]
As an alternative (maybe this is newer since the original answer) you can use the strum crate and use the EnumCount macro. Here is their example:
use strum::{EnumCount, IntoEnumIterator};
use strum_macros::{EnumCount as EnumCountMacro, EnumIter};
#[derive(Debug, EnumCountMacro, EnumIter)]
enum Week {
Sunday,
Monday,
Tuesday,
Wednesday,
Thursday,
Friday,
Saturday,
}
assert_eq!(7, Week::COUNT);
assert_eq!(Week::iter().count(), Week::COUNT);
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | hellow |
Solution 2 | Nocker |