1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
//! HTTP timings and traces. //! //! This module implements parsers and serializers for timing-related headers. //! These headers enable tracing and timing requests, and help answer the //! question of: _"Where is my program spending its time?"_ //! //! # Specifications //! //! - [W3C Trace-Context header](https://w3c.github.io/trace-context/) //! - [W3C Server-Timing header](https://w3c.github.io/server-timing/#the-server-timing-header-field) pub mod server_timing; mod trace_context; #[doc(inline)] pub use server_timing::{Metric, ServerTiming}; pub use trace_context::TraceContext;