pub struct ArchitecturalReport {
pub summary: ArchitecturalSummary,
pub total_decisions: usize,
pub total_evolution_records: usize,
pub total_drifts: usize,
pub drift_statistics: DriftStatistics,
}Expand description
Comprehensive report of architectural state
Fields§
§summary: ArchitecturalSummarySummary of architectural state
total_decisions: usizeTotal number of decisions
total_evolution_records: usizeTotal number of evolution records
total_drifts: usizeTotal number of drifts detected
drift_statistics: DriftStatisticsDrift statistics
Trait Implementations§
Source§impl Clone for ArchitecturalReport
impl Clone for ArchitecturalReport
Source§fn clone(&self) -> ArchitecturalReport
fn clone(&self) -> ArchitecturalReport
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 moreAuto Trait Implementations§
impl Freeze for ArchitecturalReport
impl RefUnwindSafe for ArchitecturalReport
impl Send for ArchitecturalReport
impl Sync for ArchitecturalReport
impl Unpin for ArchitecturalReport
impl UnwindSafe for ArchitecturalReport
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