#country #jurisdiction #iso-3166

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

#118 in Internationalization (i18n)

Download history 4723/week @ 2022-12-05 5119/week @ 2022-12-12 3990/week @ 2022-12-19 489/week @ 2022-12-26 1970/week @ 2023-01-02 3699/week @ 2023-01-09 5746/week @ 2023-01-16 4458/week @ 2023-01-23 6149/week @ 2023-01-30 5905/week @ 2023-02-06 4251/week @ 2023-02-13 5961/week @ 2023-02-20 4078/week @ 2023-02-27 2687/week @ 2023-03-06 3892/week @ 2023-03-13 1640/week @ 2023-03-20

12,299 downloads per month

MIT license

33KB
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

~1–1.5MB
~35K SLoC