Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 670 Bytes

README.md

File metadata and controls

21 lines (16 loc) · 670 Bytes

jisx0401

Docs Crates.io (latest)

JIS X 0401により定義された都道府県コードを取り扱うためのユーティリティです

Example

use jisx0401::Prefecture;

fn main() {
    let prefecture = Prefecture::try_from("26").unwrap();
    assert_eq!(prefecture, Prefecture::KYOTO);
    assert_eq!(prefecture.name_ja(), "京都府");

    let prefecture = Prefecture::try_from("滋賀県").unwrap();
    assert_eq!(prefecture, Prefecture::SHIGA);
    assert_eq!(prefecture.code(), "25");
}