pub struct HealthCheckLog {
pub end: Option<String>,
pub exit_code: Option<i64>,
pub output: Option<String>,
pub start: Option<String>,
}
Expand description
HealthCheckLog : 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
Implementations§
Source§impl HealthCheckLog
impl HealthCheckLog
Sourcepub fn new() -> HealthCheckLog
pub fn new() -> HealthCheckLog
HealthCheckLog describes the results of a single healthcheck
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§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 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
Source§impl PartialEq for HealthCheckLog
impl PartialEq for HealthCheckLog
Source§impl Serialize for HealthCheckLog
impl Serialize for HealthCheckLog
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