#[derive(Clone, Copy, Debug, Default)]
pub enum Format {
#[default]
Table,
Json,
JsonPretty,
}
#[cfg(all(feature = "hotpath", not(feature = "hotpath-off")))]
#[doc(inline)]
pub use lib_on::*;
#[cfg(all(feature = "hotpath", not(feature = "hotpath-off")))]
mod lib_on;
#[cfg(all(feature = "hotpath", not(feature = "hotpath-off")))]
pub use lib_on::channels;
#[cfg(all(feature = "hotpath", not(feature = "hotpath-off")))]
pub use lib_on::futures;
#[cfg(all(feature = "hotpath", not(feature = "hotpath-off")))]
pub use lib_on::streams;
#[cfg(all(feature = "hotpath", not(feature = "hotpath-off"), feature = "threads"))]
pub use lib_on::threads;
#[cfg(any(feature = "hotpath", feature = "ci", feature = "tui"))]
pub(crate) mod output;
#[cfg(any(feature = "hotpath", feature = "ci", feature = "tui"))]
pub use output::{
format_bytes, format_duration, shorten_function_name, FunctionLogsJson, FunctionsDataJson,
FunctionsJson, MetricType, MetricsProvider, ProfilingMode, Reporter,
};
#[cfg(all(feature = "hotpath", not(feature = "hotpath-off")))]
pub(crate) mod output_on;
#[cfg(all(feature = "hotpath", not(feature = "hotpath-off")))]
pub(crate) mod http_server;
#[cfg(any(feature = "hotpath", feature = "ci", feature = "tui"))]
pub mod json;
#[cfg(any(feature = "hotpath", feature = "ci", feature = "tui"))]
pub use json::Route;
#[cfg(all(feature = "hotpath", not(feature = "hotpath-off")))]
pub(crate) mod tid;
#[cfg(any(not(feature = "hotpath"), feature = "hotpath-off"))]
#[doc(inline)]
pub use lib_off::*;
#[cfg(any(not(feature = "hotpath"), feature = "hotpath-off"))]
mod lib_off;
#[cfg(any(not(feature = "hotpath"), feature = "hotpath-off"))]
pub use lib_off::channels;
#[cfg(any(not(feature = "hotpath"), feature = "hotpath-off"))]
pub use lib_off::futures;
#[cfg(any(not(feature = "hotpath"), feature = "hotpath-off"))]
pub use lib_off::streams;