mirror of
https://github.com/ClementTsang/bottom.git
synced 2026-08-14 15:36:39 +00:00
10 lines
158 B
Rust
10 lines
158 B
Rust
struct TimedCPUData<'a> {
|
|
cpu_name: &'a str,
|
|
cpu_usage: f32,
|
|
time: std::time::Duration,
|
|
}
|
|
|
|
fn get_timestamped_cpu_data() {}
|
|
|
|
pub fn get_cpu_data_list() {}
|