Is there an obvious way to have garde respect serde rules (specifically, serde(rename_all = "camelCase")) for validation paths?
My public-facing input types are camel-cased to match the Javascript convention, but internally are snake-cased for Rust. When mapping errors back to form fields, I'd like to reflect the same convention.
Thanks.