1 2 3 4 5 6 7 8 9 10
use serde::Deserialize; #[derive(Debug, Deserialize)] #[serde(rename_all = "PascalCase")] pub struct OutfittingEvent { #[serde(alias = "MarketID")] pub market_id: u64, pub star_system: String, pub station_name: String, }