1 2 3 4 5 6 7 8 9 10 11 12 13
//! Optional fastrace helpers for provider HTTP and streaming. #[cfg(feature = "tracing")] mod imp; #[cfg(not(feature = "tracing"))] mod stub; #[cfg(feature = "tracing")] pub use imp::*; #[cfg(not(feature = "tracing"))] pub use stub::*;