tweedegolf / irmars

Rust library for interfacing with irma servers.
Other
3 stars 1 forks source link

Use serde(rename_all) #2

Closed leonbotros closed 2 years ago

leonbotros commented 2 years ago

https://github.com/tweedegolf/irmars/blob/659859d6aa2bdda636ee0672ca9011e74d3ecff1/src/sessionresult.rs#L8

Just a suggestion but these definitions can all use rename_all as shown in serde docs here: https://serde.rs/container-attrs.html#rename_all, e.g., with "SCREAMING_SNAKE_CASE" for most and "lowercase/camelCase" for SessionType. This saves 15 lines in total.

davidv1992 commented 2 years ago

Done in master