pub enum AlarmSeverity {
Critical,
Warning,
Informational,
ProtocolUnknown,
Major,
Minor,
Marginal,
TraceInfo,
Unknown(u32),
}Expand description
Operational severity attached to a station alarm report.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for AlarmSeverity
impl Clone for AlarmSeverity
Source§fn clone(&self) -> AlarmSeverity
fn clone(&self) -> AlarmSeverity
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 AlarmSeverity
Source§impl Debug for AlarmSeverity
impl Debug for AlarmSeverity
impl Eq for AlarmSeverity
Source§impl From<AlarmSeverity> for u32
impl From<AlarmSeverity> for u32
Source§fn from(value: AlarmSeverity) -> Self
fn from(value: AlarmSeverity) -> Self
Converts to this type from the input type.
Source§impl From<u32> for AlarmSeverity
impl From<u32> for AlarmSeverity
Source§impl Hash for AlarmSeverity
impl Hash for AlarmSeverity
Source§impl PartialEq for AlarmSeverity
impl PartialEq for AlarmSeverity
impl StructuralPartialEq for AlarmSeverity
Auto Trait Implementations§
impl Freeze for AlarmSeverity
impl RefUnwindSafe for AlarmSeverity
impl Send for AlarmSeverity
impl Sync for AlarmSeverity
impl Unpin for AlarmSeverity
impl UnsafeUnpin for AlarmSeverity
impl UnwindSafe for AlarmSeverity
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