Struct podman_api::models::HealthCheckLog
source · pub struct HealthCheckLog {
pub end: Option<String>,
pub exit_code: Option<i64>,
pub output: Option<String>,
pub start: Option<String>,
}
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 Clone for HealthCheckLog
impl Clone for HealthCheckLog
source§fn clone(&self) -> HealthCheckLog
fn clone(&self) -> HealthCheckLog
Returns a copy 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 HealthCheckLog
impl Debug for HealthCheckLog
source§impl<'de> Deserialize<'de> for HealthCheckLog
impl<'de> Deserialize<'de> for HealthCheckLog
source§fn deserialize<__D>(
__deserializer: __D
) -> Result<HealthCheckLog, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D
) -> Result<HealthCheckLog, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq<HealthCheckLog> for HealthCheckLog
impl PartialEq<HealthCheckLog> for HealthCheckLog
source§fn eq(&self, other: &HealthCheckLog) -> bool
fn eq(&self, other: &HealthCheckLog) -> bool
source§impl Serialize for HealthCheckLog
impl Serialize for HealthCheckLog
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