1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
// textos::unicode::string // //! Utf-8 strings. // mod counter; mod non_nul; mod strings; mod u8string; pub use all::*; pub(crate) mod all { #[doc(inline)] pub use super::{non_nul::*, strings::Strings, u8string::*}; #[doc(inline)] #[cfg(feature = "alloc")] pub use super::counter::counter_string; }