pub fn from_numeric_str(numeric: &str) -> Option<CountryCode>
Expand description

Returns the CountryCode with the given numeric 3 length str, if exists.

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