llm_latency_lens_core/lib.rs
1//! Core types and timing engine for LLM Latency Lens
2//!
3//! This crate provides the foundational types and timing infrastructure
4//! for high-precision measurement of LLM API latency.
5
6pub mod error;
7pub mod timing;
8pub mod types;
9
10pub use error::{Error, Result};
11pub use timing::{Clock, Timestamp, TimingEngine};
12pub use types::*;