devela/text/unicode/
mod.rs1#![doc = crate::_DOC_TEXT_UNICODE!()] #![doc = crate::_doc!(modules: crate::text; unicode: grapheme, scalar)]
5#![doc = crate::_doc!(flat:"text")]
6#![doc = crate::_doc!(extends: char)]
7#[cfg(feature = "grapheme")]
11#[cfg_attr(nightly_doc, doc(cfg(feature = "grapheme")))]
12pub mod grapheme; #[allow(hidden_glob_reexports, reason = "re-exported `char`")]
17pub mod scalar; crate::structural_mods! { _mods {
21 }
27 _pub_mods {
28 pub use super::{
29 scalar::_all::*,
30 };
31 #[cfg(feature = "grapheme")]
32 pub use super::{
33 grapheme::_all::*,
34 };
35
36 }
37}