pub struct FanCurveRanges {
pub temperature_range: RangeInclusive<i32>,
pub speed_range: RangeInclusive<u8>,
}
Expand description
Range of values allowed to be used within fan curve points
Fields§
§temperature_range: RangeInclusive<i32>
Temperature range allowed in curve points
speed_range: RangeInclusive<u8>
Fan speed range allowed in curve points
Trait Implementations§
Source§impl Clone for FanCurveRanges
impl Clone for FanCurveRanges
Source§fn clone(&self) -> FanCurveRanges
fn clone(&self) -> FanCurveRanges
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for FanCurveRanges
impl Debug for FanCurveRanges
Source§impl PartialEq for FanCurveRanges
impl PartialEq for FanCurveRanges
impl Eq for FanCurveRanges
impl StructuralPartialEq for FanCurveRanges
Auto Trait Implementations§
impl Freeze for FanCurveRanges
impl RefUnwindSafe for FanCurveRanges
impl Send for FanCurveRanges
impl Sync for FanCurveRanges
impl Unpin for FanCurveRanges
impl UnwindSafe for FanCurveRanges
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