Can we make `EnumSet` work on enums with fields where the fields `impl EnumSetType`? E.g. ``` #[derive(EnumSetType)] enum MyEnum { A B(MyEnumInner) } #[derive(EnumSetType)] enum MyEnumInner { C D } ``` Currently this works on `MyEnumInner` but not on `MyEnum`.
Can we make
EnumSetwork on enums with fields where the fieldsimpl EnumSetType?E.g.
Currently this works on
MyEnumInnerbut not onMyEnum.