icu_datetime/provider/pattern/reference/
mod.rs

1// This file is part of ICU4X. For terms of use, please see the file
2// called LICENSE at the top level of the ICU4X source tree
3// (online at: https://github.com/unicode-org/icu4x/blob/main/LICENSE ).
4
5//! Reference `Pattern` implementation intended to follow Unicode
6//! specification, and become publicly available for tooling to use
7//! for parsing/inspecting/modifying and serialization.
8//!
9//! The runtime `Pattern` uses parsing/serialization from this module.
10//!
11//! <div class="stab unstable">
12//! 🚧 This code is considered unstable; it may change at any time, in breaking or non-breaking ways,
13//! including in SemVer minor releases. While the serde representation of data structs is guaranteed
14//! to be stable, their Rust representation might not be. Use with caution.
15//! </div>
16
17mod generic;
18mod parser;
19pub(crate) mod pattern;
20
21pub use generic::GenericPattern;
22pub(crate) use parser::Parser;
23pub use pattern::Pattern;