🛈 Note: This is pre-release documentation for the upcoming tracing 0.2.0 ecosystem.

For the release documentation, please see docs.rs, instead.

Module tracing::collect

source ·
Expand description

Collects and records trace data.

Structs§

Traits§

  • Trait representing the functions required to collect trace data.

Functions§

  • Sets the collector as the default for the current thread for the duration of the lifetime of the returned DefaultGuard.
  • set_global_defaultstd or alloc
    Sets this collector as the global default for the duration of the entire program. Will be used as a fallback if no thread-local collector has been set in a thread (using with_default.)
  • Sets this collector as the default for the current thread for the duration of a closure.