icu_provider_source/cldr_serde/
mod.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// This file is part of ICU4X. For terms of use, please see the file
// called LICENSE at the top level of the ICU4X source tree
// (online at: https://github.com/unicode-org/icu4x/blob/main/LICENSE ).

//! Serde structures for CLDR JSON.
//!
//! The modules below each contain Rust struct definitions for CLDR JSON files, with Serde
//! deserialization support. These structures can be used in the transformers.

pub(crate) mod aliases;
pub(crate) mod ca;
pub(crate) mod coverage_levels;
#[cfg(feature = "experimental")]
pub(crate) mod currencies;
#[cfg(feature = "experimental")]
pub(crate) mod date_fields;
pub(crate) mod directionality;
#[cfg_attr(not(feature = "experimental"), allow(dead_code))]
pub(crate) mod displaynames;
pub(crate) mod exemplar_chars;
pub(crate) mod japanese;
pub(crate) mod likely_subtags;
pub(crate) mod list_patterns;
pub(crate) mod locale_resource;
pub(crate) mod numbering_systems;
pub(crate) mod numbers;
pub(crate) mod parent_locales;
#[cfg(feature = "experimental")]
pub(crate) mod personnames;
pub(crate) mod plural_ranges;
pub(crate) mod plurals;
pub(crate) mod time_zones;
#[cfg(feature = "experimental")]
pub(crate) mod transforms;
pub(crate) mod units;
pub(crate) mod week_data;

use locale_resource::LocaleResource;