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