Struct HealthReport
pub struct HealthReport {
pub healthy: bool,
pub details: Map<String, Value>,
}Expand description
Represents a health report returned by the Lelum service.
Fields§
§healthy: boolWhether the application considers itself healthy.
details: Map<String, Value>Additional details about the health status.
Trait Implementations§
§impl Debug for HealthReport
impl Debug for HealthReport
§impl<'de> Deserialize<'de> for HealthReport
impl<'de> Deserialize<'de> for HealthReport
§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
§impl Serialize for HealthReport
impl Serialize for HealthReport
Auto Trait Implementations§
impl Freeze for HealthReport
impl RefUnwindSafe for HealthReport
impl Send for HealthReport
impl Sync for HealthReport
impl Unpin for HealthReport
impl UnwindSafe for HealthReport
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