1 2 3 4 5 6 7 8 9 10 11 12
use serde::Serialize; use crate::entities::mix::structure::Mix; /// Represents gas definitions. /// /// https://www.streit.cc/extern/uddf_v321/en/gasdefinitions.html #[derive(Debug, Serialize)] pub struct GasDefinitions { #[serde(rename = "mix")] pub mixes: Vec<Mix>, }