1#![allow(non_snake_case)] 2 3//! Metrics from the Air daemon. 4 5#[derive(Debug, Clone)] 6pub struct Struct { 7 pub memory_usage_mb:f64, 8 9 pub cpu_usage_percent:f64, 10 11 pub network_usage_mbps:f64, 12 13 pub disk_usage_mb:f64, 14 15 pub average_response_time:f64, 16}