pub struct PluginNodeHealthSummary {
pub overall_health: PluginNodeHealth,
pub health_by_type: HashMap<NodeType, PluginNodeStatistics>,
}Expand description
Plugin-compatible node health summary
Fields§
§overall_health: PluginNodeHealthOverall health
health_by_type: HashMap<NodeType, PluginNodeStatistics>Health by node type
Trait Implementations§
Source§impl Clone for PluginNodeHealthSummary
impl Clone for PluginNodeHealthSummary
Source§fn clone(&self) -> PluginNodeHealthSummary
fn clone(&self) -> PluginNodeHealthSummary
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 PluginNodeHealthSummary
impl Debug for PluginNodeHealthSummary
Auto Trait Implementations§
impl Freeze for PluginNodeHealthSummary
impl RefUnwindSafe for PluginNodeHealthSummary
impl Send for PluginNodeHealthSummary
impl Sync for PluginNodeHealthSummary
impl Unpin for PluginNodeHealthSummary
impl UnwindSafe for PluginNodeHealthSummary
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