devela/text/char/
mod.rs
1mod core_impls;
11mod impls;
12#[cfg(test)]
13mod tests;
14
15mod definitions;
17mod namespace;
18mod reexports;
19
20crate::items! { #[allow(unused)]
22 pub use _mods::*;
23 #[allow(unused)] #[doc(hidden, no_inline)]
24 pub use _always::*;
25
26 mod _mods {
27 pub use super::{definitions::*, namespace::*, reexports::*};
28 }
29 pub(super) mod _all {
30 #[doc(inline)]
31 pub use super::_mods::*;
32 }
33 pub(super) mod _always { #![allow(unused)]
34 pub use super::reexports::*;
35 }
36}