When generating code, enum variants should be expressed in the native preferred format. In Swift, that is camelCased, as opposed to Rust's UpperCamelCased.
Motivation
Swift types generated with serde-generate feel out of place since they start with a capital letter. It's minor, but the code would be closer to a first class citizen if they were properly camelCased.
🚀 Feature Request
When generating code, enum variants should be expressed in the native preferred format. In Swift, that is camelCased, as opposed to Rust's UpperCamelCased.
Motivation
Swift types generated with
serde-generate
feel out of place since they start with a capital letter. It's minor, but the code would be closer to a first class citizen if they were properly camelCased.