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