useserde::Deserialize;#[derive(Debug, Deserialize)]/// Information about a country.
pubstructCountry{/// The ISO 3166-1-alpha-2 country code.
/// See <https://services.timeanddate.com/api/doc/v3/bi01.html#ISO3166>
pubid: String,
/// Full name of the country.
pubname: String,
}