podman-rest-client 0.13.0

Interface for querying the podman REST API. Supports connections over SSH.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use serde::{Deserialize, Serialize};
#[derive(Default, Debug, Serialize, Deserialize)]
/// HealthCheckLog describes the results of a single healthcheck
pub struct HealthCheckLog {
    /// End time as a string
    #[serde(rename = "End")]
    pub end: Option<String>,
    /// Exitcode is 0 or 1
    #[serde(rename = "ExitCode")]
    pub exit_code: Option<i64>,
    /// Output is the stdout/stderr from the healthcheck command
    #[serde(rename = "Output")]
    pub output: Option<String>,
    /// Start time as string
    #[serde(rename = "Start")]
    pub start: Option<String>,
}