3 releases (breaking)
Uses old Rust 2015
0.3.0 | Aug 21, 2016 |
---|---|
0.2.0 | Jan 14, 2016 |
0.1.0 | Jan 12, 2016 |
#299 in Internationalization (i18n)
22KB
443 lines
iso3166-3.rs
Rust crate for ISO 3166-3 data.
What is ISO 3166-3?
ISO 3166-3 is part of the ISO 3166 standard published by the International Organization for Standardization (ISO), and defines codes for country names which have been deleted from ISO 3166-1 since its first publication in 1974.
-- Wikipedia
Installation
Add the following dependency to your Cargo.toml:
iso3166_3 = "0.3"
And include it in your project:
extern crate iso3166_3;
Examples
Retrieve all former country codes:
let countries = iso3166_3::all().unwrap();
Retrieve a former country code by its ISO 3166-3 four-character code:
let country = iso3166_3::code("ZRCD").unwrap();
Retrieve a vector of former country codes by a range of when the code was valid:
// Codes valid from years 1974-1990.
iso3166_3::validity(Some(1974), Some(1990));
// Codes valid from years 1990 onward to infinity:
iso3166_3::validity(Some(1990), None);
// Codes valid until 1998 and prior:
iso3166_3::validity(None, Some(1998));
License
License info in LICENSE.md. Long story short, ISC.