1 2 3 4 5 6 7 8 9 10 11 12
use chrono::{DateTime, Utc}; use compact_str::CompactString; #[derive(Debug, Clone)] pub enum MetricValue { UInt(u64), Float(f64), String(CompactString), Boolean(bool), DateTime(DateTime<Utc>), List(Vec<Self>), }