icu_locale_core/preferences/extensions/unicode/
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//! A set of unicode extensions which correspond to preferences.
6//!
7//! The module contains a set structs corresponding to Locale [`unicode`](crate::extensions::unicode)
8//! extensions for which ICU4X provides implementations of preferences.
9//!
10//! The macros in this module provide wrappers for creating preferences based on enums and structs.
11//!
12//! [`Locale`]: crate::Locale
13pub mod errors;
14pub mod keywords;
15mod macros;
16#[doc(inline)]
17pub use macros::*;