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
#[derive(Default, Debug)]
pub struct ContainerLogsLibpod<'a> {
    /// Keep connection after returning logs.
    pub follow: Option<bool>,
    /// Return logs from stdout
    pub stdout: Option<bool>,
    /// Return logs from stderr
    pub stderr: Option<bool>,
    /// Only return logs since this time, as a UNIX timestamp
    pub since: Option<&'a str>,
    /// Only return logs before this time, as a UNIX timestamp
    pub until: Option<&'a str>,
    /// Add timestamps to every log line
    pub timestamps: Option<bool>,
    /// Only return this number of log lines from the end of the logs
    pub tail: Option<&'a str>,
}