pub struct HistoryPoint {
pub commit: String,
pub date: String,
pub grade: HealthGrade,
pub average_score: f64,
pub total_couplings: usize,
pub module_count: usize,
pub critical: usize,
pub high: usize,
}Expand description
One sampled point in the coupling timeline.
Fields§
§commit: StringAbbreviated commit hash.
date: StringCommitter date in ISO-8601 (e.g. 2026-05-20).
grade: HealthGradeOverall project health grade at this revision.
average_score: f64Average balance score (0.0 - 1.0).
total_couplings: usizeNumber of detected couplings.
module_count: usizeNumber of analyzed modules.
critical: usizeCritical-severity issue count.
high: usizeHigh-severity issue count.
Trait Implementations§
Source§impl Clone for HistoryPoint
impl Clone for HistoryPoint
Source§fn clone(&self) -> HistoryPoint
fn clone(&self) -> HistoryPoint
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 moreAuto Trait Implementations§
impl Freeze for HistoryPoint
impl RefUnwindSafe for HistoryPoint
impl Send for HistoryPoint
impl Sync for HistoryPoint
impl Unpin for HistoryPoint
impl UnsafeUnpin for HistoryPoint
impl UnwindSafe for HistoryPoint
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,
impl<A, B, T> HttpServerConnExec<A, B> for Twhere
B: Body,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more