pub enum HealthCheckScope {
Liveness,
Readiness,
Diagnostics,
}Expand description
Runtime view used when selecting which registered checks to run.
Variants§
Liveness
Minimal process liveness checks.
Readiness
Readiness checks used by load balancers and orchestrators.
Diagnostics
Full diagnostic checks used by admin pages and runtime tasks.
Implementations§
Trait Implementations§
Source§impl Clone for HealthCheckScope
impl Clone for HealthCheckScope
Source§fn clone(&self) -> HealthCheckScope
fn clone(&self) -> HealthCheckScope
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 HealthCheckScope
impl Debug for HealthCheckScope
Source§impl PartialEq for HealthCheckScope
impl PartialEq for HealthCheckScope
Source§fn eq(&self, other: &HealthCheckScope) -> bool
fn eq(&self, other: &HealthCheckScope) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for HealthCheckScope
impl Eq for HealthCheckScope
impl StructuralPartialEq for HealthCheckScope
Auto Trait Implementations§
impl Freeze for HealthCheckScope
impl RefUnwindSafe for HealthCheckScope
impl Send for HealthCheckScope
impl Sync for HealthCheckScope
impl Unpin for HealthCheckScope
impl UnsafeUnpin for HealthCheckScope
impl UnwindSafe for HealthCheckScope
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.