Skip to main content

name

Function name 

Source
pub const fn name(code: &str) -> &'static str
Expand description

Look up a country name by its ISO 3166-1 alpha-2 code.

Returns UNKNOWN when the code is not recognised or is not exactly 2 characters long.

ยงExamples

assert_eq!(countries::name("FR"), "France");
assert_eq!(countries::name("XX"), "Unknown");
assert_eq!(countries::name("??"), "Unknown");