3 个版本 (破坏性更新)

0.4.0 2019 年 8 月 27 日
0.3.0 2019 年 8 月 26 日
0.1.0 2019 年 8 月 26 日

#207国际化 (i18n)

Download history • Rust 包仓库 73/week @ 2024-03-13 • Rust 包仓库 154/week @ 2024-03-20 • Rust 包仓库 192/week @ 2024-03-27 • Rust 包仓库 221/week @ 2024-04-03 • Rust 包仓库 186/week @ 2024-04-10 • Rust 包仓库 182/week @ 2024-04-17 • Rust 包仓库 93/week @ 2024-04-24 • Rust 包仓库 38/week @ 2024-05-01 • Rust 包仓库 145/week @ 2024-05-08 • Rust 包仓库 144/week @ 2024-05-15 • Rust 包仓库 137/week @ 2024-05-22 • Rust 包仓库 134/week @ 2024-05-29 • Rust 包仓库 135/week @ 2024-06-05 • Rust 包仓库 159/week @ 2024-06-12 • Rust 包仓库 178/week @ 2024-06-19 • Rust 包仓库 138/week @ 2024-06-26 • Rust 包仓库

每月下载量 631 次
用于 3 个crate

MIT 许可证

30KB
482

Crate locale-types

travis.ci crates.io docs.rs Minimum Rust Version mit License GitHub stars

此crate提供了一种 Locale 枚举、LocaleIdentifier 特性和一个 LocaleString 结构,可用于以标准兼容的方式解析和构造地区标识符。

它被 locale-codeslocale-settings crate使用。

示例

use locale_types::{LocaleIdentifier, LocaleString};

let locale = LocaleString::new("en".to_string()).unwrap()
    .with_territory("US".to_string()).unwrap()
    .with_code_set("UTF-8".to_string()).unwrap()
    .with_modifier("collation=pinyin;currency=CNY".to_string()).unwrap();
println!("{}", locale);

历史

  • 0.4.0 - 将 LocaleIdentifier 接口更新为在构造函数错误时返回 LocaleError。
  • 0.3.0 - 更新了模块结构。
  • 0.1.0 - 从 simple-locale 中提取。

依赖关系

~2.1–3MB
~53K SLoC