pub enum SupportPriority {
Low,
Normal,
High,
Urgent,
}Variants§
Trait Implementations§
Source§impl Clone for SupportPriority
impl Clone for SupportPriority
Source§fn clone(&self) -> SupportPriority
fn clone(&self) -> SupportPriority
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 moreSource§impl Debug for SupportPriority
impl Debug for SupportPriority
Source§impl PartialEq for SupportPriority
impl PartialEq for SupportPriority
Source§fn eq(&self, other: &SupportPriority) -> bool
fn eq(&self, other: &SupportPriority) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for SupportPriority
impl Eq for SupportPriority
impl StructuralPartialEq for SupportPriority
Auto Trait Implementations§
impl Freeze for SupportPriority
impl RefUnwindSafe for SupportPriority
impl Send for SupportPriority
impl Sync for SupportPriority
impl Unpin for SupportPriority
impl UnsafeUnpin for SupportPriority
impl UnwindSafe for SupportPriority
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