1 2 3 4 5 6 7 8 9 10 11 12 13
//! Feature-gated type implementations #[cfg(feature = "alloc")] mod impl_alloc; #[cfg(feature = "std")] mod impl_std; // Atomic types are available in no_std environments mod impl_atomic; #[cfg(feature = "serde")] pub mod serde;