1 2//! Resource usage information from the Air daemon. 3 4#[derive(Debug, Clone)] 5pub struct Struct { 6 pub memory_usage_mb:f64, 7 8 pub cpu_usage_percent:f64, 9 10 pub disk_usage_mb:f64, 11 12 pub network_usage_mbps:f64, 13 14 pub thread_count:u32, 15 16 pub open_file_handles:u32, 17}