podman_rest_client/v4/params/container_logs.rs
1#[derive(Default, Debug)]
2pub struct ContainerLogs<'a> {
3 /// Keep connection after returning logs.
4 pub follow: Option<bool>,
5 /// Return logs from stdout
6 pub stdout: Option<bool>,
7 /// Return logs from stderr
8 pub stderr: Option<bool>,
9 /// Only return logs since this time, as a UNIX timestamp
10 pub since: Option<&'a str>,
11 /// Only return logs before this time, as a UNIX timestamp
12 pub until: Option<&'a str>,
13 /// Add timestamps to every log line
14 pub timestamps: Option<bool>,
15 /// Only return this number of log lines from the end of the logs
16 pub tail: Option<&'a str>,
17}