pub enum ObservationHealthState {
Healthy,
Degraded,
Unavailable,
}Expand description
Top-level health state for the observation routing runtime.
Variants§
Healthy
Routing is operating normally.
Degraded
Routing is operating with degraded behavior.
Routing is unavailable.
Trait Implementations§
Source§impl Clone for ObservationHealthState
impl Clone for ObservationHealthState
Source§fn clone(&self) -> ObservationHealthState
fn clone(&self) -> ObservationHealthState
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 ObservationHealthState
impl Debug for ObservationHealthState
Source§impl<'de> Deserialize<'de> for ObservationHealthState
impl<'de> Deserialize<'de> for ObservationHealthState
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
Source§impl PartialEq for ObservationHealthState
impl PartialEq for ObservationHealthState
Source§impl Serialize for ObservationHealthState
impl Serialize for ObservationHealthState
impl Copy for ObservationHealthState
impl Eq for ObservationHealthState
impl StructuralPartialEq for ObservationHealthState
Auto Trait Implementations§
impl Freeze for ObservationHealthState
impl RefUnwindSafe for ObservationHealthState
impl Send for ObservationHealthState
impl Sync for ObservationHealthState
impl Unpin for ObservationHealthState
impl UnsafeUnpin for ObservationHealthState
impl UnwindSafe for ObservationHealthState
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