Enum thermostat::OperatingMode[][src]

#[repr(u8)]
pub enum OperatingMode { MaintainRange, CoolToSetPoint, HeatToSetPoint, Disabled, DisabledUnsafe, }

Various thermostat operating modes

Variants

Maintain temperature between min and max set points

Maintain temperature below the max set point

Maintain temperature above the min set point

Maintain only within the min and max safety set points

Ignore safety set points -- do nothing except measure

Trait Implementations

impl Debug for OperatingMode
[src]

Formats the value using the given formatter. Read more

impl Copy for OperatingMode
[src]

impl Clone for OperatingMode
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for OperatingMode
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Display for OperatingMode
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations