1 | //! Some wrapper types. |
---|---|
2 | //! |
3 | //! # Features |
4 | //! |
5 | //! This module is only exported with the "fmt" feature. |
6 | |
7 | #[cfg(feature = "fmt")] |
8 | pub(crate) mod ascii_str; |
9 | |
10 | pub(crate) mod pwrapper; |
11 | |
12 | #[cfg(feature = "fmt")] |
13 | pub(crate) mod sliced; |
14 | |
15 | #[cfg(feature = "fmt")] |
16 | pub use self::ascii_str::NotAsciiError; |
17 | |
18 | #[doc(no_inline)] |
19 | #[cfg(feature = "fmt")] |
20 | pub use crate::{AsciiStr, Sliced}; |
21 | |
22 | #[doc(no_inline)] |
23 | pub use crate::PWrapper; |
24 |