#[repr(u8)]pub enum ControlMode {
Constantspeed = 0,
Constantpressure = 1,
Proportionalpressure = 2,
Constantflow = 3,
Constanttemperature = 5,
Automatic = 7,
}Variants§
Constantspeed = 0
The pump is running at a constant speed.
Constantpressure = 1
The pump will regulate its speed to maintain a constant differential pressure over its flanges.
Proportionalpressure = 2
The pump will regulate its speed to maintain a constant differential pressure over its flanges.
Constantflow = 3
The pump will regulate its speed to maintain a constant flow through the pump.
Constanttemperature = 5
The pump will regulate its speed to maintain a constant temperature.
Automatic = 7
The operation of the pump is automatically optimized to provide the most suitable performance with respect to comfort and energy savings.
Implementations§
Trait Implementations§
Source§impl Clone for ControlMode
impl Clone for ControlMode
Source§fn clone(&self) -> ControlMode
fn clone(&self) -> ControlMode
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 ControlMode
impl Debug for ControlMode
Source§impl<'de> Deserialize<'de> for ControlMode
impl<'de> Deserialize<'de> for ControlMode
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<ControlMode> for u8
impl From<ControlMode> for u8
Source§fn from(val: ControlMode) -> Self
fn from(val: ControlMode) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ControlMode
impl PartialEq for ControlMode
Source§impl Serialize for ControlMode
impl Serialize for ControlMode
impl Copy for ControlMode
impl Eq for ControlMode
impl StructuralPartialEq for ControlMode
Auto Trait Implementations§
impl Freeze for ControlMode
impl RefUnwindSafe for ControlMode
impl Send for ControlMode
impl Sync for ControlMode
impl Unpin for ControlMode
impl UnwindSafe for ControlMode
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