pub struct HeatIndex<T: Temperature>(/* private fields */);Expand description
The heat index.
The heat index indicates how the human body feels temperature. If relative humidity is low human body cools itself by perspiration, dissipating heat from the body. At higher relative humidity the evaporation rate from the human skin is lower. In that case, the body cannot dissipate heat as easily as it is the case in dry air. The heat index is based on subjective measurements and is only meaningful above 25°C and 40% RH.
Implementations§
Trait Implementations§
impl<T: Copy + Temperature> Copy for HeatIndex<T>
Auto Trait Implementations§
impl<T> Freeze for HeatIndex<T>where
T: Freeze,
impl<T> RefUnwindSafe for HeatIndex<T>where
T: RefUnwindSafe,
impl<T> Send for HeatIndex<T>where
T: Send,
impl<T> Sync for HeatIndex<T>where
T: Sync,
impl<T> Unpin for HeatIndex<T>where
T: Unpin,
impl<T> UnsafeUnpin for HeatIndex<T>where
T: UnsafeUnpin,
impl<T> UnwindSafe for HeatIndex<T>where
T: UnwindSafe,
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