Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Merged by Bors] - EnumVariantMeta derive #1972

Closed
wants to merge 3 commits into from

Conversation

cart
Copy link
Member

@cart cart commented Apr 20, 2021

There are cases where we want an enum variant name. Right now the only way to do that with rust's std is to derive Debug, but this will also print out the variant's fields. This creates the unfortunate situation where we need to manually write out each variant's string name (ex: in #1963), which is both boilerplate-ey and error-prone. Crates such as strum exist for this reason, but it includes a lot of code and complexity that we don't need.

This adds a dead-simple EnumVariantMeta derive that exposes enum_variant_index and enum_variant_name functions. This allows us to make cases like #1963 much cleaner (see the second commit). We might also be able to reuse this logic for bevy_reflect enum derives.

@cart cart added C-Enhancement A new feature C-Code-Quality A section of code that is hard to understand or change labels Apr 20, 2021
@cart
Copy link
Member Author

cart commented Apr 21, 2021

bors r+

bors bot pushed a commit that referenced this pull request Apr 21, 2021
There are cases where we want an enum variant name. Right now the only way to do that with rust's std is to derive Debug, but this will also print out the variant's fields. This creates the unfortunate situation where we need to manually write out each variant's string name (ex: in #1963), which is both boilerplate-ey and error-prone. Crates such as `strum` exist for this reason, but it includes a lot of code and complexity that we don't need.

This adds a dead-simple `EnumVariantMeta` derive that exposes `enum_variant_index` and `enum_variant_name` functions. This allows us to make cases like #1963 much cleaner (see the second commit). We might also be able to reuse this logic for `bevy_reflect` enum derives.
@bors bors bot changed the title EnumVariantMeta derive [Merged by Bors] - EnumVariantMeta derive Apr 22, 2021
@bors bors bot closed this Apr 22, 2021
ostwilkens pushed a commit to ostwilkens/bevy that referenced this pull request Jul 27, 2021
There are cases where we want an enum variant name. Right now the only way to do that with rust's std is to derive Debug, but this will also print out the variant's fields. This creates the unfortunate situation where we need to manually write out each variant's string name (ex: in bevyengine#1963), which is both boilerplate-ey and error-prone. Crates such as `strum` exist for this reason, but it includes a lot of code and complexity that we don't need.

This adds a dead-simple `EnumVariantMeta` derive that exposes `enum_variant_index` and `enum_variant_name` functions. This allows us to make cases like bevyengine#1963 much cleaner (see the second commit). We might also be able to reuse this logic for `bevy_reflect` enum derives.
vabrador pushed a commit to vabrador/bevy that referenced this pull request Sep 15, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
C-Code-Quality A section of code that is hard to understand or change C-Enhancement A new feature
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants