pub enum CurrentHeatDirection {
None,
Climbing,
Falling,
}
Expand description
Which way we are currently travelling within the working range.
Variants§
None
Just started up. Fine to go either up or down.
Climbing
Already climbing / temperature rising, only start circulating once we hit the top.
Falling
Already falling (circulating already), only stop circulating once we hit the bottom.
Auto Trait Implementations§
impl RefUnwindSafe for CurrentHeatDirection
impl Send for CurrentHeatDirection
impl Sync for CurrentHeatDirection
impl Unpin for CurrentHeatDirection
impl UnwindSafe for CurrentHeatDirection
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