podman_rest_client/v5/models/
healthcheck_result.rs

1use serde::{Deserialize, Serialize};
2#[derive(Default, Debug, Serialize, Deserialize)]
3/// HealthcheckResult stores information about a single run of a healthcheck probe
4pub struct HealthcheckResult {
5    #[serde(rename = "End")]
6    pub end: Option<String>,
7    #[serde(rename = "ExitCode")]
8    pub exit_code: Option<i64>,
9    #[serde(rename = "Output")]
10    pub output: Option<String>,
11    #[serde(rename = "Start")]
12    pub start: Option<String>,
13}