pub struct Fans {
pub total: u32,
pub failed: u32,
pub speed: u32,
}Expand description
Fans - Format (0,3003)
Cooling fan statistics
§XDR Definition (sFlow Discussion)
/* Cooling */
/* opaque = counter_data; enterprise = 0; format=3003 */
struct fans {
unsigned int total; /* total fans */
unsigned int failed; /* failed fans */
unsigned int speed; /* average fan speed expressed in percent */
}Fields§
§total: u32Total number of fans
failed: u32Number of failed fans
speed: u32Average fan speed expressed as a percentage
Trait Implementations§
impl Eq for Fans
impl StructuralPartialEq for Fans
Auto Trait Implementations§
impl Freeze for Fans
impl RefUnwindSafe for Fans
impl Send for Fans
impl Sync for Fans
impl Unpin for Fans
impl UnwindSafe for Fans
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more