Function rust_iso3166::from_alpha3

source ·
pub fn from_alpha3(alpha3: &str) -> Option<CountryCode>
Expand description

Returns the CountryCode with the given Alpha3 code, if exists. #Sample

let country = rust_iso3166::from_alpha3("AUS");
assert_eq!(036, country.unwrap().numeric);