1 2 3 4 5 6 7 8 9 10 11
//! This module is used as compatability layer to support `std` and `no_std`. cfg_if::cfg_if! { if #[cfg(feature = "std")] { mod std_impl; pub use std_impl::*; } else { mod no_std_impl; pub use no_std_impl::*; } }