pub enum MessagePriority {
High,
Normal,
Low,
}Expand description
Message priority levels
Variants§
High
High priority (alarms, life safety)
Normal
Normal priority (most messages)
Low
Low priority (non-critical)
Trait Implementations§
Source§impl Clone for MessagePriority
impl Clone for MessagePriority
Source§fn clone(&self) -> MessagePriority
fn clone(&self) -> MessagePriority
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 MessagePriority
Source§impl Debug for MessagePriority
impl Debug for MessagePriority
impl Eq for MessagePriority
Source§impl PartialEq for MessagePriority
impl PartialEq for MessagePriority
Source§fn eq(&self, other: &MessagePriority) -> bool
fn eq(&self, other: &MessagePriority) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for MessagePriority
Auto Trait Implementations§
impl Freeze for MessagePriority
impl RefUnwindSafe for MessagePriority
impl Send for MessagePriority
impl Sync for MessagePriority
impl Unpin for MessagePriority
impl UnsafeUnpin for MessagePriority
impl UnwindSafe for MessagePriority
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