pub enum TuningPriority {
Critical,
High,
Medium,
Low,
Info,
}Expand description
Priority level for tuning recommendations.
Variants§
Critical
Critical issue that needs immediate attention.
High
High priority improvement.
Medium
Medium priority enhancement.
Low
Low priority fine-tuning.
Info
Informational suggestion.
Trait Implementations§
Source§impl Clone for TuningPriority
impl Clone for TuningPriority
Source§fn clone(&self) -> TuningPriority
fn clone(&self) -> TuningPriority
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 TuningPriority
impl Debug for TuningPriority
Source§impl<'de> Deserialize<'de> for TuningPriority
impl<'de> Deserialize<'de> for TuningPriority
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Ord for TuningPriority
impl Ord for TuningPriority
Source§fn cmp(&self, other: &TuningPriority) -> Ordering
fn cmp(&self, other: &TuningPriority) -> 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 TuningPriority
impl PartialEq for TuningPriority
Source§impl PartialOrd for TuningPriority
impl PartialOrd for TuningPriority
Source§impl Serialize for TuningPriority
impl Serialize for TuningPriority
impl Copy for TuningPriority
impl Eq for TuningPriority
impl StructuralPartialEq for TuningPriority
Auto Trait Implementations§
impl Freeze for TuningPriority
impl RefUnwindSafe for TuningPriority
impl Send for TuningPriority
impl Sync for TuningPriority
impl Unpin for TuningPriority
impl UnwindSafe for TuningPriority
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<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.