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