#[non_exhaustive]pub enum StatusMessageIdDefinition {
Show 24 variants
CalibrationFailed = 1,
SensorNotFound = 2,
SensorAlwaysOn = 3,
LampDoused = 17,
LampStrike = 18,
OverTemperature = 33,
UnderTemperature = 34,
SensorOutOfRange = 35,
OverVoltagePhase = 49,
UnderVoltagePhase = 50,
OverCurrent = 51,
UnderCurrent = 52,
Phase = 53,
PhaseError = 54,
Amps = 55,
Volts = 56,
DimSlotOccupied = 65,
BreakerTrip = 66,
Watts = 67,
DimmerFailure = 68,
DimmerPanic = 69,
Ready = 80,
NotReady = 81,
LowFluid = 82,
}
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
CalibrationFailed = 1
SensorNotFound = 2
SensorAlwaysOn = 3
LampDoused = 17
LampStrike = 18
OverTemperature = 33
UnderTemperature = 34
SensorOutOfRange = 35
OverVoltagePhase = 49
UnderVoltagePhase = 50
OverCurrent = 51
UnderCurrent = 52
Phase = 53
PhaseError = 54
Amps = 55
Volts = 56
DimSlotOccupied = 65
BreakerTrip = 66
Watts = 67
DimmerFailure = 68
DimmerPanic = 69
Ready = 80
NotReady = 81
LowFluid = 82
Trait Implementations§
Source§impl Clone for StatusMessageIdDefinition
impl Clone for StatusMessageIdDefinition
Source§fn clone(&self) -> StatusMessageIdDefinition
fn clone(&self) -> StatusMessageIdDefinition
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 StatusMessageIdDefinition
impl Debug for StatusMessageIdDefinition
impl Copy for StatusMessageIdDefinition
impl StructuralPartialEq for StatusMessageIdDefinition
Auto Trait Implementations§
impl Freeze for StatusMessageIdDefinition
impl RefUnwindSafe for StatusMessageIdDefinition
impl Send for StatusMessageIdDefinition
impl Sync for StatusMessageIdDefinition
impl Unpin for StatusMessageIdDefinition
impl UnwindSafe for StatusMessageIdDefinition
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