pub struct TraceabilityMetrics {
pub total: usize,
pub with_trace_links: usize,
pub coverage_pct: f64,
pub with_commit_refs: usize,
}Expand description
Traceability coverage metrics.
Fields§
§total: usizeTotal requirements
with_trace_links: usizeRequirements with at least one trace link
coverage_pct: f64Coverage percentage
with_commit_refs: usizeRequirements with commit references in comments
Trait Implementations§
Source§impl Clone for TraceabilityMetrics
impl Clone for TraceabilityMetrics
Source§fn clone(&self) -> TraceabilityMetrics
fn clone(&self) -> TraceabilityMetrics
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 TraceabilityMetrics
impl Debug for TraceabilityMetrics
Auto Trait Implementations§
impl Freeze for TraceabilityMetrics
impl RefUnwindSafe for TraceabilityMetrics
impl Send for TraceabilityMetrics
impl Sync for TraceabilityMetrics
impl Unpin for TraceabilityMetrics
impl UnsafeUnpin for TraceabilityMetrics
impl UnwindSafe for TraceabilityMetrics
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