#japanese #prefecture

jp-prefecture

an utility crate of using Japanese prefectures

7 releases (stable)

1.0.4 Jun 9, 2022
1.0.3 Apr 9, 2022
1.0.2 Apr 7, 2022
0.1.1 Apr 7, 2022
0.1.0 Apr 7, 2022

#81 in Internationalization (i18n)

34 downloads per month

MIT license

66KB
1K SLoC

Crates.io Docs.rs Crates.io Test

jp-prefecture

jp-prefecture is an useful crate for using Japanese prefectures

Getting Started

Crate has to be added as dependency to Cargo.toml

[dependencies]
jp-prefecture = "1.0.4"

and imported to the scope of a block where it's begin called

use jp_prefecture::prefectures;

Examples

use jp_prefecture::prefectures;

let tokyo = prefectures::find_by_kanji("東京都");
println!("{:?}", tokyo); // => Some(Prefecture::Tokyo)
println!("{:?}", tokyo.unwrap().kanji()); // => "東京都"
println!("{:?}", tokyo.unwrap().kanji_short()); // => "東京"
println!("{:?}", tokyo.unwrap().english()); // => "tokyo"

let tokyo = prefectures::find_by_kanji("東京県"); // uhmmmm...
println!("{:?}", tokyo); // => None

Dependencies

~0.7–1.1MB
~27K SLoC