1 2 3 4 5 6 7 8 9
use serde::Deserialize; #[derive(Debug, Deserialize)] #[serde(rename_all = "PascalCase")] pub struct BookTaxiEvent { pub cost: u64, pub destination_location: String, pub destination_system: String, }