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
message MessageType {
enum Type { ... };
oneof type { ... };
}
This then generates two distinct enum Type definitions which won't compile. In this case I'm ok having a different name for the oneof enum type, but I haven't figured out how to tell prost to override the name. Is this possible, if not, are there any workarounds for it?