1error: `num_enum` only supports unit variants (with no associated data), but `Number::NonZero` was not a unit variant. 2 --> $DIR/variants_with_fields.rs:7:5 3 | 47 | NonZero(u8), 5 | ^^^^^^^^^^^ 6 7error: `num_enum` only supports unit variants (with no associated data), but `Colour::Red` was not a unit variant. 8 --> $DIR/variants_with_fields.rs:13:5 9 | 1013 | Red { intensity: u8 }, 11 | ^^^^^^^^^^^^^^^^^^^^^ 12 13error: `num_enum` only supports unit variants (with no associated data), but `Meaningless::Beep` was not a unit variant. 14 --> $DIR/variants_with_fields.rs:19:5 15 | 1619 | Beep(), 17 | ^^^^^^ 18