pub struct ElementHealth {
pub name: String,
pub c4_level: String,
pub file_count: usize,
pub files_planned: usize,
pub files_active: usize,
pub files_stable: usize,
pub pattern: String,
pub pattern_confidence: String,
}Expand description
Health summary for a single architectural element.
Fields§
§name: String§c4_level: String§file_count: usize§files_planned: usize§files_active: usize§files_stable: usize§pattern: String§pattern_confidence: StringTrait Implementations§
Source§impl Clone for ElementHealth
impl Clone for ElementHealth
Source§fn clone(&self) -> ElementHealth
fn clone(&self) -> ElementHealth
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 ElementHealth
impl Debug for ElementHealth
Source§impl<'de> Deserialize<'de> for ElementHealth
impl<'de> Deserialize<'de> for ElementHealth
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 ElementHealth
impl RefUnwindSafe for ElementHealth
impl Send for ElementHealth
impl Sync for ElementHealth
impl Unpin for ElementHealth
impl UnsafeUnpin for ElementHealth
impl UnwindSafe for ElementHealth
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