pub enum NotificationPriority {
Low = 0,
Normal = 1,
High = 2,
Urgent = 3,
}Expand description
Priority level for notifications.
Higher priority notifications are displayed sooner.
Urgent notifications jump to the front of the queue.
Variants§
Low = 0
Low priority, displayed last.
Normal = 1
Normal priority (default).
High = 2
High priority, displayed before Normal/Low.
Urgent = 3
Urgent priority, jumps to front immediately.
Trait Implementations§
Source§impl Clone for NotificationPriority
impl Clone for NotificationPriority
Source§fn clone(&self) -> NotificationPriority
fn clone(&self) -> NotificationPriority
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 NotificationPriority
impl Debug for NotificationPriority
Source§impl Default for NotificationPriority
impl Default for NotificationPriority
Source§fn default() -> NotificationPriority
fn default() -> NotificationPriority
Returns the “default value” for a type. Read more
Source§impl Hash for NotificationPriority
impl Hash for NotificationPriority
Source§impl Ord for NotificationPriority
impl Ord for NotificationPriority
Source§fn cmp(&self, other: &NotificationPriority) -> Ordering
fn cmp(&self, other: &NotificationPriority) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for NotificationPriority
impl PartialEq for NotificationPriority
Source§impl PartialOrd for NotificationPriority
impl PartialOrd for NotificationPriority
impl Copy for NotificationPriority
impl Eq for NotificationPriority
impl StructuralPartialEq for NotificationPriority
Auto Trait Implementations§
impl Freeze for NotificationPriority
impl RefUnwindSafe for NotificationPriority
impl Send for NotificationPriority
impl Sync for NotificationPriority
impl Unpin for NotificationPriority
impl UnsafeUnpin for NotificationPriority
impl UnwindSafe for NotificationPriority
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.