[go: up one dir, main page]

firestorm 0.4.0

A low overhead intrusive flamegraph profiler.
Documentation
1
2
3
4
5
6
7
8
9
#[cfg(any(feature = "enable_cpu_time", feature = "enable_system_time"))]
pub use firestorm_enabled::*;

#[cfg(not(any(feature = "enable_cpu_time", feature = "enable_system_time")))]
#[doc(hidden)]
pub mod disabled;

#[cfg(not(any(feature = "enable_cpu_time", feature = "enable_system_time")))]
pub use disabled::*;