pub struct HealthReport {
pub total_elements: usize,
pub container_count: usize,
pub component_count: usize,
pub total_files: usize,
pub files_planned: usize,
pub files_active: usize,
pub files_stable: usize,
pub patterns_total: usize,
pub patterns_planned: usize,
pub patterns_verified: usize,
pub per_element: Vec<ElementHealth>,
}Expand description
Aggregated health report across all architectural elements.
Fields§
§total_elements: usize§container_count: usize§component_count: usize§total_files: usize§files_planned: usize§files_active: usize§files_stable: usize§patterns_total: usize§patterns_planned: usize§patterns_verified: usize§per_element: Vec<ElementHealth>Trait Implementations§
Source§impl Clone for HealthReport
impl Clone for HealthReport
Source§fn clone(&self) -> HealthReport
fn clone(&self) -> HealthReport
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 HealthReport
impl Debug for HealthReport
Source§impl Default for HealthReport
impl Default for HealthReport
Source§fn default() -> HealthReport
fn default() -> HealthReport
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for HealthReport
impl<'de> Deserialize<'de> for HealthReport
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 HealthReport
impl RefUnwindSafe for HealthReport
impl Send for HealthReport
impl Sync for HealthReport
impl Unpin for HealthReport
impl UnsafeUnpin for HealthReport
impl UnwindSafe for HealthReport
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