useserde::Deserialize;#[derive(Debug, Deserialize)]/// Information about a station.
pubstructStationInfo{/// Station name.
pubname: String,
/// Latitude coordinate of the station.
publatitude:f32,
/// Longitude coordinate of the station.
publongitude:f32,
/// Station type. Either reference or subordinate station.
pub r#type: String,
/// Distance between request place and this station.
pubdistance:f32,
}