pub enum HealthCheckStatus {
Healthy,
Unhealthy,
}Variants§
Trait Implementations§
Source§impl BitAnd for HealthCheckStatus
impl BitAnd for HealthCheckStatus
Source§type Output = HealthCheckStatus
type Output = HealthCheckStatus
The resulting type after applying the
& operator.Source§fn bitand(self, other: HealthCheckStatus) -> HealthCheckStatus
fn bitand(self, other: HealthCheckStatus) -> HealthCheckStatus
Performs the
& operation. Read moreSource§impl Clone for HealthCheckStatus
impl Clone for HealthCheckStatus
Source§fn clone(&self) -> HealthCheckStatus
fn clone(&self) -> HealthCheckStatus
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 HealthCheckStatus
impl Debug for HealthCheckStatus
Source§impl Into<StatusCode> for HealthCheckStatus
impl Into<StatusCode> for HealthCheckStatus
Source§impl PartialEq for HealthCheckStatus
impl PartialEq for HealthCheckStatus
Source§impl Serialize for HealthCheckStatus
impl Serialize for HealthCheckStatus
Source§fn serialize<S>(
&self,
serializer: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
fn serialize<S>(
&self,
serializer: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for HealthCheckStatus
impl RefUnwindSafe for HealthCheckStatus
impl Send for HealthCheckStatus
impl Sync for HealthCheckStatus
impl Unpin for HealthCheckStatus
impl UnwindSafe for HealthCheckStatus
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