1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
// // Sysinfo // // Copyright (c) 2018 Guillaume Gomez // use ComponentExt; /// Dummy struct representing a component. pub struct Component {} impl ComponentExt for Component { fn get_temperature(&self) -> f32 { 0.0 } fn get_max(&self) -> f32 { 0.0 } fn get_critical(&self) -> Option<f32> { None } fn get_label(&self) -> &str { "" } fn refresh(&mut self) {} }