pub trait AudioMetrics: Send + Sync {
// Provided methods
fn record_latency(&self, _stage: &str, _duration_ms: f64) { ... }
fn increment_counter(&self, _name: &str) { ... }
}Expand description
Trait for collecting audio processing metrics.