pub enum SensitivityLevel {
Unused,
Indifferent,
Low,
Moderate,
Critical,
}Expand description
Sensitivity level for a resource dimension.
Variants§
Unused
Not used at all.
Indifferent
Used but not sensitive to quality.
Low
Low sensitivity.
Moderate
Moderate sensitivity.
Critical
Critical — dominant resource dimension.
Trait Implementations§
Source§impl Clone for SensitivityLevel
impl Clone for SensitivityLevel
Source§fn clone(&self) -> SensitivityLevel
fn clone(&self) -> SensitivityLevel
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 SensitivityLevel
impl Debug for SensitivityLevel
Source§impl Display for SensitivityLevel
impl Display for SensitivityLevel
Source§impl Ord for SensitivityLevel
impl Ord for SensitivityLevel
Source§fn cmp(&self, other: &SensitivityLevel) -> Ordering
fn cmp(&self, other: &SensitivityLevel) -> 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 SensitivityLevel
impl PartialEq for SensitivityLevel
Source§impl PartialOrd for SensitivityLevel
impl PartialOrd for SensitivityLevel
impl Copy for SensitivityLevel
impl Eq for SensitivityLevel
impl StructuralPartialEq for SensitivityLevel
Auto Trait Implementations§
impl Freeze for SensitivityLevel
impl RefUnwindSafe for SensitivityLevel
impl Send for SensitivityLevel
impl Sync for SensitivityLevel
impl Unpin for SensitivityLevel
impl UnwindSafe for SensitivityLevel
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