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
9 pub cpu_usage_percent:f64,
10
11 pub disk_usage_mb:f64,
12
13 pub network_usage_mbps:f64,
14
15 pub thread_count:u32,
16
17 pub open_file_handles:u32,
18}