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