strum icon indicating copy to clipboard operation
strum copied to clipboard

enum name as prefix to enum value

Open dzmitry-lahoda opened this issue 3 years ago • 2 comments

given

enum Foo {
   Bar,
}

I want to get

"FooBar"

so something like could work

#[strum_prefix]
enum Foo {
   Bar,
}

dzmitry-lahoda avatar Apr 13 '21 10:04 dzmitry-lahoda

This would be very helpful for replicating Python enums, which display as Foo.Bar for the above scenario.

jayvdb avatar Apr 16 '21 23:04 jayvdb

Looks like https://github.com/Peternator7/strum/pull/296 may solve your use case

cayman-amzn avatar Dec 26 '23 20:12 cayman-amzn