pub struct PluginNodeStatistics {
pub total_nodes: usize,
pub healthy_nodes: usize,
pub warning_nodes: usize,
pub unhealthy_nodes: usize,
}Expand description
Plugin-compatible node statistics
Fields§
§total_nodes: usizeTotal node count
healthy_nodes: usizeHealthy node count
warning_nodes: usizeWarning node count
unhealthy_nodes: usizeUnhealthy node count
Trait Implementations§
Source§impl Clone for PluginNodeStatistics
impl Clone for PluginNodeStatistics
Source§fn clone(&self) -> PluginNodeStatistics
fn clone(&self) -> PluginNodeStatistics
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 PluginNodeStatistics
impl Debug for PluginNodeStatistics
Source§impl Default for PluginNodeStatistics
impl Default for PluginNodeStatistics
Source§fn default() -> PluginNodeStatistics
fn default() -> PluginNodeStatistics
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for PluginNodeStatistics
impl RefUnwindSafe for PluginNodeStatistics
impl Send for PluginNodeStatistics
impl Sync for PluginNodeStatistics
impl Unpin for PluginNodeStatistics
impl UnwindSafe for PluginNodeStatistics
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