1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
// textos::unicode::egc // //! Extended grapheme cluster. // mod non_nul; #[cfg(feature = "alloc")] mod string; mod u8string; /// Common trait for extended grapheme cluster types. pub trait Egcs {} pub use all::*; pub(crate) mod all { #[doc(inline)] pub use super::{non_nul::*, u8string::*}; #[doc(inline)] #[cfg(feature = "alloc")] pub use super::string::*; }