pub struct HealthSummary {
pub grade: ProjectHealth,
pub score: usize,
pub risk_level: RiskSeverity,
pub signals: Vec<HealthSignal>,
}Fields§
§grade: ProjectHealth§score: usize§risk_level: RiskSeverity§signals: Vec<HealthSignal>Trait Implementations§
Source§impl Clone for HealthSummary
impl Clone for HealthSummary
Source§fn clone(&self) -> HealthSummary
fn clone(&self) -> HealthSummary
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 HealthSummary
impl Debug for HealthSummary
Source§impl<'de> Deserialize<'de> for HealthSummary
impl<'de> Deserialize<'de> for HealthSummary
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 PartialEq for HealthSummary
impl PartialEq for HealthSummary
Source§fn eq(&self, other: &HealthSummary) -> bool
fn eq(&self, other: &HealthSummary) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for HealthSummary
impl Serialize for HealthSummary
impl Eq for HealthSummary
impl StructuralPartialEq for HealthSummary
Auto Trait Implementations§
impl Freeze for HealthSummary
impl RefUnwindSafe for HealthSummary
impl Send for HealthSummary
impl Sync for HealthSummary
impl Unpin for HealthSummary
impl UnsafeUnpin for HealthSummary
impl UnwindSafe for HealthSummary
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