pub enum EventState {
Normal,
Fault,
Offnormal,
HighLimit,
LowLimit,
LifeSafetyAlarm,
Custom(EventStateValue),
Reserved(EventStateValue),
}Expand description
Event state enumeration
Variants§
Normal
Fault
Offnormal
HighLimit
LowLimit
LifeSafetyAlarm
Custom(EventStateValue)
Reserved(EventStateValue)
Trait Implementations§
Source§impl Clone for EventState
impl Clone for EventState
Source§fn clone(&self) -> EventState
fn clone(&self) -> EventState
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 EventState
Source§impl Debug for EventState
impl Debug for EventState
Source§impl<'de> Deserialize<'de> for EventState
impl<'de> Deserialize<'de> for EventState
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 Display for EventState
impl Display for EventState
impl Eq for EventState
Source§impl From<EventState> for u16
impl From<EventState> for u16
Source§fn from(value: EventState) -> Self
fn from(value: EventState) -> Self
Converts to this type from the input type.
Source§impl From<u16> for EventState
impl From<u16> for EventState
Source§impl Hash for EventState
impl Hash for EventState
Source§impl PartialEq for EventState
impl PartialEq for EventState
Source§fn eq(&self, other: &EventState) -> bool
fn eq(&self, other: &EventState) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for EventState
impl Serialize for EventState
impl StructuralPartialEq for EventState
Auto Trait Implementations§
impl Freeze for EventState
impl RefUnwindSafe for EventState
impl Send for EventState
impl Sync for EventState
impl Unpin for EventState
impl UnsafeUnpin for EventState
impl UnwindSafe for EventState
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