pub struct IcNodeStatusCounts {
pub total: usize,
pub up: usize,
pub down: usize,
pub disabled: usize,
pub degraded: usize,
pub unknown: usize,
}Expand description
IcNodeStatusCounts
Exact status totals derived from raw observed node rows.
Fields§
§total: usizeTotal observed rows in the group.
up: usizeRows classified as UP.
down: usizeRows classified as DOWN.
disabled: usizeRows classified as DISABLED.
degraded: usizeRows classified as DEGRADED.
unknown: usizeRows whose raw status is not recognized.
Implementations§
Trait Implementations§
Source§impl Clone for IcNodeStatusCounts
impl Clone for IcNodeStatusCounts
Source§fn clone(&self) -> IcNodeStatusCounts
fn clone(&self) -> IcNodeStatusCounts
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 IcNodeStatusCounts
impl Debug for IcNodeStatusCounts
Source§impl Default for IcNodeStatusCounts
impl Default for IcNodeStatusCounts
Source§fn default() -> IcNodeStatusCounts
fn default() -> IcNodeStatusCounts
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for IcNodeStatusCounts
impl<'de> Deserialize<'de> for IcNodeStatusCounts
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
impl Eq for IcNodeStatusCounts
Source§impl PartialEq for IcNodeStatusCounts
impl PartialEq for IcNodeStatusCounts
Source§impl Serialize for IcNodeStatusCounts
impl Serialize for IcNodeStatusCounts
impl StructuralPartialEq for IcNodeStatusCounts
Auto Trait Implementations§
impl Freeze for IcNodeStatusCounts
impl RefUnwindSafe for IcNodeStatusCounts
impl Send for IcNodeStatusCounts
impl Sync for IcNodeStatusCounts
impl Unpin for IcNodeStatusCounts
impl UnsafeUnpin for IcNodeStatusCounts
impl UnwindSafe for IcNodeStatusCounts
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