pub struct HealthCheckLog {
    pub end: Option<String>,
    pub exit_code: Option<i64>,
    pub output: Option<String>,
    pub start: Option<String>,
}Available on crate feature 
v5 only.Expand description
HealthCheckLog describes the results of a single healthcheck
Fields§
§end: Option<String>End time as a string
exit_code: Option<i64>Exitcode is 0 or 1
output: Option<String>Output is the stdout/stderr from the healthcheck command
start: Option<String>Start time as string
Trait Implementations§
Source§impl Debug for HealthCheckLog
 
impl Debug for HealthCheckLog
Source§impl Default for HealthCheckLog
 
impl Default for HealthCheckLog
Source§fn default() -> HealthCheckLog
 
fn default() -> HealthCheckLog
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for HealthCheckLog
 
impl<'de> Deserialize<'de> for HealthCheckLog
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
Auto Trait Implementations§
impl Freeze for HealthCheckLog
impl RefUnwindSafe for HealthCheckLog
impl Send for HealthCheckLog
impl Sync for HealthCheckLog
impl Unpin for HealthCheckLog
impl UnwindSafe for HealthCheckLog
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