1 2 3 4 5 6 7 8
use {crate::elite::material::Material, serde::Deserialize}; #[derive(Debug, Deserialize)] #[serde(rename_all = "PascalCase")] pub struct SynthesisEvent { pub materials: Vec<Material>, pub name: String, }