usecrate::data::country::Country;useserde::{Deserialize, Serialize};usestd::collections::HashMap;pubmodcountry;#[derive(Debug, Serialize, Deserialize)]pubstructWorldData{/// Countries mapped by their ISO_A2 country code
pubcountries:HashMap<String, Country>,
}