useserde::Serialize;/// Represents a geography.
////// https://www.streit.cc/extern/uddf_v321/en/geography.html
#[derive(Debug, Serialize)]pubstructGeography{/// Latitude in degrees.
publatitude:Option<f64>,
/// Longitude in degrees.
publongitude:Option<f64>,
/// Concatenation of the latitude and longitude by default.
publocation:Option<String>,
}