I have a JSON structure that looks like this:
{ \"type\": \"suite\", \"event\": \"started\", \"test_count\": 1 }
I want to deserialize into
You just need to put #[serde(rename_all = "snake_case")] before the enum definition.