pub struct HealthReport {
pub plugin_id: String,
pub plugin_version: String,
pub check_timestamp: String,
pub overall_health: HealthScore,
pub checks: Vec<HealthCheckResult>,
pub binary_compatibility: Option<BinaryCompatibility>,
pub performance_baseline: Option<PerformanceBaseline>,
pub recommendations: Vec<String>,
}Expand description
Overall plugin health report
Fields§
§plugin_id: String§plugin_version: String§check_timestamp: String§overall_health: HealthScore§checks: Vec<HealthCheckResult>§binary_compatibility: Option<BinaryCompatibility>§performance_baseline: Option<PerformanceBaseline>§recommendations: Vec<String>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<'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