1 2 3 4 5 6 7 8 9 10
/// Enum Variant Strings #[derive(Debug)] pub struct EnumVarStrings<const N: usize> { /// Custom pub custom: [&'static str; N], /// Identifier pub ident: &'static str, /// Number pub number: &'static str, }