pub enum DependencyPriority {
Critical = 0,
High = 1,
Medium = 2,
Low = 3,
}Variants§
Trait Implementations§
Source§impl Clone for DependencyPriority
impl Clone for DependencyPriority
Source§fn clone(&self) -> DependencyPriority
fn clone(&self) -> DependencyPriority
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 DependencyPriority
impl Debug for DependencyPriority
Source§impl Ord for DependencyPriority
impl Ord for DependencyPriority
Source§fn cmp(&self, other: &DependencyPriority) -> Ordering
fn cmp(&self, other: &DependencyPriority) -> 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 DependencyPriority
impl PartialEq for DependencyPriority
Source§impl PartialOrd for DependencyPriority
impl PartialOrd for DependencyPriority
impl Copy for DependencyPriority
impl Eq for DependencyPriority
impl StructuralPartialEq for DependencyPriority
Auto Trait Implementations§
impl Freeze for DependencyPriority
impl RefUnwindSafe for DependencyPriority
impl Send for DependencyPriority
impl Sync for DependencyPriority
impl Unpin for DependencyPriority
impl UnwindSafe for DependencyPriority
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