pub enum ProjectHealth {
Critical,
Warning,
Healthy,
Unknown,
}Expand description
Project health assessment
Variants§
Critical
Project has significant issues or blockers
Warning
Project has minor issues or delays
Healthy
Project is progressing well
Unknown
Project status cannot be determined
Trait Implementations§
Source§impl Clone for ProjectHealth
impl Clone for ProjectHealth
Source§fn clone(&self) -> ProjectHealth
fn clone(&self) -> ProjectHealth
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 ProjectHealth
impl Debug for ProjectHealth
Source§impl Ord for ProjectHealth
impl Ord for ProjectHealth
Source§fn cmp(&self, other: &ProjectHealth) -> Ordering
fn cmp(&self, other: &ProjectHealth) -> 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 ProjectHealth
impl PartialEq for ProjectHealth
Source§impl PartialOrd for ProjectHealth
impl PartialOrd for ProjectHealth
impl Eq for ProjectHealth
impl StructuralPartialEq for ProjectHealth
Auto Trait Implementations§
impl Freeze for ProjectHealth
impl RefUnwindSafe for ProjectHealth
impl Send for ProjectHealth
impl Sync for ProjectHealth
impl Unpin for ProjectHealth
impl UnwindSafe for ProjectHealth
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<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.