pub struct AuditReport {
pub generated_at: String,
pub repository: String,
pub period_start: Option<String>,
pub period_end: Option<String>,
pub summary: AuditSummary,
pub commits: Vec<CommitAuditEntry>,
}Expand description
Full audit report (CLI presentation type).
Fields§
§generated_at: String§repository: String§period_start: Option<String>§period_end: Option<String>§summary: AuditSummary§commits: Vec<CommitAuditEntry>Trait Implementations§
Source§impl Clone for AuditReport
impl Clone for AuditReport
Source§fn clone(&self) -> AuditReport
fn clone(&self) -> AuditReport
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 AuditReport
impl Debug for AuditReport
Source§impl<'de> Deserialize<'de> for AuditReport
impl<'de> Deserialize<'de> for AuditReport
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 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