pub struct AuditReport {
pub repository_path: String,
pub overview: Overview,
pub dependencies: DependencyHealth,
pub code_quality: CodeQuality,
pub architecture: ArchitectureAssessment,
pub testing: TestingMaturity,
pub risks: RiskReport,
pub overall_score: u8,
}Fields§
§repository_path: String§overview: Overview§dependencies: DependencyHealth§code_quality: CodeQuality§architecture: ArchitectureAssessment§testing: TestingMaturity§risks: RiskReport§overall_score: u8Trait 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 (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 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