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