#[repr(u8)]pub enum ControlSequenceOfOperation {
Coolingonly = 0,
Coolingwithreheat = 1,
Heatingonly = 2,
Heatingwithreheat = 3,
Coolingandheating = 4,
Coolingandheatingwithreheat = 5,
}Variants§
Coolingonly = 0
Heat and Emergency are not possible
Coolingwithreheat = 1
Heat and Emergency are not possible
Heatingonly = 2
Cool and precooling (see Terms) are not possible
Heatingwithreheat = 3
Cool and precooling are not possible
Coolingandheating = 4
All modes are possible
Coolingandheatingwithreheat = 5
All modes are possible
Implementations§
Trait Implementations§
Source§impl Clone for ControlSequenceOfOperation
impl Clone for ControlSequenceOfOperation
Source§fn clone(&self) -> ControlSequenceOfOperation
fn clone(&self) -> ControlSequenceOfOperation
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 ControlSequenceOfOperation
impl Debug for ControlSequenceOfOperation
Source§impl<'de> Deserialize<'de> for ControlSequenceOfOperation
impl<'de> Deserialize<'de> for ControlSequenceOfOperation
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<ControlSequenceOfOperation> for u8
impl From<ControlSequenceOfOperation> for u8
Source§fn from(val: ControlSequenceOfOperation) -> Self
fn from(val: ControlSequenceOfOperation) -> Self
Converts to this type from the input type.
impl Copy for ControlSequenceOfOperation
impl Eq for ControlSequenceOfOperation
impl StructuralPartialEq for ControlSequenceOfOperation
Auto Trait Implementations§
impl Freeze for ControlSequenceOfOperation
impl RefUnwindSafe for ControlSequenceOfOperation
impl Send for ControlSequenceOfOperation
impl Sync for ControlSequenceOfOperation
impl Unpin for ControlSequenceOfOperation
impl UnwindSafe for ControlSequenceOfOperation
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