You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hmm. Even if the macro was somehow adjusted to match variants without explicit discriminators, rust-lang/rust#23898 prevents them from being used in the match statement we generate.
The current macro only works for
enum FooBar { Foo = 0, Bar = 1 }
and notenum FooBar { Foo, Bar }
orenum FooBar { Foo = 0, Bar }
.The text was updated successfully, but these errors were encountered: