#country-code #country #iso-3166 #localization

jurisdiction

A lightweight API-friendly abstraction for the jurisdiction in the world, and their accompanying static information pertaining to that jurisdiction. Information available includes: * ISO 3166 country codes * UN M49 Region classifications

2 releases

0.1.1 Apr 27, 2020
0.1.0 Apr 6, 2020

#136 in Internationalization (i18n)

Download history 4649/week @ 2024-03-14 3996/week @ 2024-03-21 3820/week @ 2024-03-28 4005/week @ 2024-04-04 2980/week @ 2024-04-11 2783/week @ 2024-04-18 3065/week @ 2024-04-25 2243/week @ 2024-05-02 2785/week @ 2024-05-09 2992/week @ 2024-05-16 2574/week @ 2024-05-23 2257/week @ 2024-05-30 3460/week @ 2024-06-06 2955/week @ 2024-06-13 2099/week @ 2024-06-20 1448/week @ 2024-06-27

10,557 downloads per month

MIT license

34KB
603 lines

Jurisdiction

Lightweight static Jurisdiction information.

This crate provides interfaces to work with jurisdictions for areas around the world. Information about a jurisdiction includes

  • ISO 3166 Alpha2 and Alpha3 character codes.
  • ISO 3166 numeric country code.
  • UN M49 region classifications.

The Jurisdiction object is a lightweight object, the size of a pointer, suitable for transfer in API surfaces throughout an ecosystem. Serialization on API boundaries may choose to employ any of the standardized classification formats.

Example

use anyhow::{Result, anyhow, format_err};
use jurisdiction::{Jurisdiction, Alpha2, Alpha3};
use jurisdiction::region::{Region, SubRegion};
use std::str::FromStr;

fn supported_jurisdiction(alpha: &str) -> Result<Jurisdiction> {
    let jurisdiction = Jurisdiction::from_str(alpha)?;
    match jurisdiction.alpha2() {
        Alpha2::NO | Alpha2::SE | Alpha2::DK => Ok(jurisdiction),
        _ => Err(format_err!("only scandinavian countries are supported")),
    }
}

fn main() {
    let jurisdiction = supported_jurisdiction("NO").expect("unsupported");

    assert_eq!(jurisdiction, Alpha2::NO);
    assert_eq!(jurisdiction.alpha2(), Alpha2::NO);
    assert_eq!(jurisdiction.alpha2().to_string(), "NO");

    assert_eq!(jurisdiction, Alpha3::NOR);
    assert_eq!(jurisdiction.alpha3(), Alpha3::NOR);
    assert_eq!(jurisdiction.alpha3().to_string(), "NOR");

    assert_eq!(jurisdiction.country_code(), 578);

    assert_eq!(jurisdiction.region(), Region::Europe);
    assert_eq!(jurisdiction.sub_region(), SubRegion::NorthernEurope);
}

See docs.rs for more extensive API documentation and examples.

Dependencies

~0.6–1.2MB
~27K SLoC