1pub mod core; 2pub use self::core::*; 3 4cfg_if::cfg_if! { 5 if #[cfg(feature = "alloc")] { 6 mod impls; 7 8 pub use impls::*; 9 } 10}