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 duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const 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 for HealthCheckLog
impl PartialEq for HealthCheckLog
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
impl StructuralPartialEq for HealthCheckLog
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