pub struct FanInfo {
pub current: u32,
pub allowed_range: Option<(u32, u32)>,
}
Expand description
Information about fan characteristics.
Fields§
§current: u32
Current value
allowed_range: Option<(u32, u32)>
Minimum and maximum allowed values. This is empty if changes to the value are not supported.
Trait Implementations§
impl Copy for FanInfo
impl Eq for FanInfo
impl StructuralPartialEq for FanInfo
Auto Trait Implementations§
impl Freeze for FanInfo
impl RefUnwindSafe for FanInfo
impl Send for FanInfo
impl Sync for FanInfo
impl Unpin for FanInfo
impl UnwindSafe for FanInfo
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