pub enum RouteReason {
LocalConfident,
LowConfidence,
SensorMissing,
StaleReading,
TemperatureAndHumidityOutOfRange,
TemperatureOutOfRange,
HumidityOutOfRange,
UnsupportedColdOrDry,
OperatorRequest,
ScheduleTick,
AnomalyMatch,
}Variants§
LocalConfident
LowConfidence
SensorMissing
StaleReading
TemperatureAndHumidityOutOfRange
TemperatureOutOfRange
HumidityOutOfRange
UnsupportedColdOrDry
OperatorRequest
ScheduleTick
AnomalyMatch
Implementations§
Source§impl RouteReason
impl RouteReason
Trait Implementations§
Source§impl Clone for RouteReason
impl Clone for RouteReason
Source§fn clone(&self) -> RouteReason
fn clone(&self) -> RouteReason
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for RouteReason
Source§impl Debug for RouteReason
impl Debug for RouteReason
impl Eq for RouteReason
Source§impl PartialEq for RouteReason
impl PartialEq for RouteReason
Source§fn eq(&self, other: &RouteReason) -> bool
fn eq(&self, other: &RouteReason) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RouteReason
Auto Trait Implementations§
impl Freeze for RouteReason
impl RefUnwindSafe for RouteReason
impl Send for RouteReason
impl Sync for RouteReason
impl Unpin for RouteReason
impl UnsafeUnpin for RouteReason
impl UnwindSafe for RouteReason
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