pub use Iterator;
pub use Newtype;
/// `Newtype` trait defines the internal representation of the `newtype`.
///
/// This trait is automatically derived for all types annotated with `#[derive(Newtype)]`
/// along with the `From<Self::Inner>` and `AsRef<Self::Inner>` traits to convert
/// between the inner type and the newtype.