1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
//! # OpenTelemetry Trace SDK
//!
//! The tracing SDK consist of a few main structs:
//!
//! * The `Tracer` struct which performs all tracing operations.
//! * The `Span` struct with is a mutable object storing information about the
//! current operation execution.
//! * The `Provider` struct which configures and produces `Tracer`s.
pub mod config;
pub mod evicted_queue;
pub mod provider;
pub mod sampler;
pub mod span;
pub mod span_processor;
pub mod tracer;