pub struct CommitIntentReport {
pub overall: CommitIntentCounts,
pub by_module: Vec<ModuleIntentRow>,
pub unknown_pct: f64,
pub corrective_ratio: Option<f64>,
}Expand description
Overall commit intent classification report.
Fields§
§overall: CommitIntentCountsAggregate counts across all scanned commits.
by_module: Vec<ModuleIntentRow>Per-module intent breakdown.
unknown_pct: f64Percentage of commits classified as “other” (unrecognized).
corrective_ratio: Option<f64>Corrective ratio: (fix + revert) / total. Range [0.0, 1.0].
Trait Implementations§
Source§impl Clone for CommitIntentReport
impl Clone for CommitIntentReport
Source§fn clone(&self) -> CommitIntentReport
fn clone(&self) -> CommitIntentReport
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 CommitIntentReport
impl Debug for CommitIntentReport
Source§impl<'de> Deserialize<'de> for CommitIntentReport
impl<'de> Deserialize<'de> for CommitIntentReport
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
Auto Trait Implementations§
impl Freeze for CommitIntentReport
impl RefUnwindSafe for CommitIntentReport
impl Send for CommitIntentReport
impl Sync for CommitIntentReport
impl Unpin for CommitIntentReport
impl UnsafeUnpin for CommitIntentReport
impl UnwindSafe for CommitIntentReport
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