1 2 3 4 5 6 7 8 9 10
use super::Pid; #[derive(Debug, Default, Clone)] pub struct LoadAvg { pub a1: f64, pub a5: f64, pub a15: f64, // pub last_pid: Pid, }
1 2 3 4 5 6 7 8 9 10
use super::Pid; #[derive(Debug, Default, Clone)] pub struct LoadAvg { pub a1: f64, pub a5: f64, pub a15: f64, // pub last_pid: Pid, }