1 2 3 4 5 6 7 8
use serde::Serialize; #[derive(Serialize)] #[serde(rename_all = "snake_case")] pub enum Shape { Polygon, Circle, }