| 21 | |
| 22 | #[derive(Debug, Deserialize, Serialize, Clone)] |
| 23 | pub struct CountryFormat { |
| 24 | pub code: String, |
| 25 | #[serde(default)] |
| 26 | pub area_codes: Vec<String>, |
| 27 | pub digits: Option<Digits>, |
| 28 | pub blacklist: Option<BlacklistInfo>, |
| 29 | } |
| 30 | |
| 31 | pub type FormatData = HashMap<String, CountryFormat>; |
| 32 |
nothing calls this directly
no outgoing calls
no test coverage detected