cargo-aprz-lib 0.14.0

Internal library for cargo-aprz
Documentation
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>),
}