pub enum IcNodeOperationalStatus {
Up,
Down,
Disabled,
Degraded,
Unknown,
}Expand description
IcNodeOperationalStatus
Known Dashboard node-status classification used for filtering and counts.
Variants§
Up
The Dashboard reports the node as up.
Down
The Dashboard reports the node as down.
Disabled
The Dashboard reports the node as administratively disabled.
Degraded
The Dashboard reports degraded operation.
Unknown
The raw Dashboard value is not recognized by this release.
Implementations§
Trait Implementations§
Source§impl Clone for IcNodeOperationalStatus
impl Clone for IcNodeOperationalStatus
Source§fn clone(&self) -> IcNodeOperationalStatus
fn clone(&self) -> IcNodeOperationalStatus
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 moreimpl Copy for IcNodeOperationalStatus
Source§impl Debug for IcNodeOperationalStatus
impl Debug for IcNodeOperationalStatus
Source§impl Display for IcNodeOperationalStatus
impl Display for IcNodeOperationalStatus
impl Eq for IcNodeOperationalStatus
Source§impl Ord for IcNodeOperationalStatus
impl Ord for IcNodeOperationalStatus
Source§fn cmp(&self, other: &IcNodeOperationalStatus) -> Ordering
fn cmp(&self, other: &IcNodeOperationalStatus) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for IcNodeOperationalStatus
impl PartialEq for IcNodeOperationalStatus
Source§impl PartialOrd for IcNodeOperationalStatus
impl PartialOrd for IcNodeOperationalStatus
Source§impl Serialize for IcNodeOperationalStatus
impl Serialize for IcNodeOperationalStatus
impl StructuralPartialEq for IcNodeOperationalStatus
Auto Trait Implementations§
impl Freeze for IcNodeOperationalStatus
impl RefUnwindSafe for IcNodeOperationalStatus
impl Send for IcNodeOperationalStatus
impl Sync for IcNodeOperationalStatus
impl Unpin for IcNodeOperationalStatus
impl UnsafeUnpin for IcNodeOperationalStatus
impl UnwindSafe for IcNodeOperationalStatus
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