country-code 0.4.0

Country Code
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// cargo expand --verbose --all-features --test macro_country_subdivision_code

use country_code::iso3166_1::alpha_2::CountryCode;

country_code::country_subdivision_code! {
    CountryCode, CountryCode::CN;

    #[derive(Debug, Clone)]
    pub enum MyCNCountrySubdivisionCode {
        BJ,
    }
}