usesuper::Geo;useserde::Deserialize;#[derive(Debug, Deserialize)]/// Information about a place.
pubstructPlace{/// Numerical ID of the referenced place.
pubid:i32,
/// Textual ID of the referenced place.
puburlid: String,
/// Geographical information about the location.
pubgeo: Geo,
}