pub struct AuditReport {
pub commits: Vec<CommitRecord>,
pub summary: AuditSummary,
}Expand description
Structured audit report with commit entries and summary statistics.
Usage:
ⓘ
let report = workflow.generate_report(None, Some(100))?;
println!("Total: {}, Signed: {}", report.summary.total_commits, report.summary.signed_commits);Fields§
§commits: Vec<CommitRecord>All commit records in the audited range.
summary: AuditSummaryAggregate statistics for the commit set.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AuditReport
impl RefUnwindSafe for AuditReport
impl Send for AuditReport
impl Sync for AuditReport
impl Unpin for AuditReport
impl UnsafeUnpin for AuditReport
impl UnwindSafe for AuditReport
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