pub struct HealthCheckEntry {
pub name: String,
pub status: String,
pub detail: Option<String>,
}Expand description
A single health check entry in a registry snapshot.
Fields§
§name: String§status: String§detail: Option<String>Trait Implementations§
Source§impl Clone for HealthCheckEntry
impl Clone for HealthCheckEntry
Source§fn clone(&self) -> HealthCheckEntry
fn clone(&self) -> HealthCheckEntry
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 HealthCheckEntry
impl Debug for HealthCheckEntry
Source§impl Serialize for HealthCheckEntry
impl Serialize for HealthCheckEntry
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 HealthCheckEntry
impl RefUnwindSafe for HealthCheckEntry
impl Send for HealthCheckEntry
impl Sync for HealthCheckEntry
impl Unpin for HealthCheckEntry
impl UnsafeUnpin for HealthCheckEntry
impl UnwindSafe for HealthCheckEntry
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