1 2 3 4 5 6 7 8 9
#[cfg(feature = "hang")] pub(crate) mod real; #[cfg(feature = "hang")] pub use real::*; #[cfg(not(feature = "hang"))] mod noop; #[cfg(not(feature = "hang"))] pub use noop::*;