podman_rest_client/v5/params/container_attach_libpod.rs
1#[derive(Default, Debug)]
2pub struct ContainerAttachLibpod<'a> {
3 /// keys to use for detaching from the container
4 pub detach_keys: Option<&'a str>,
5 /// Stream all logs from the container across the connection. Happens before streaming attach (if requested). At least one of logs or stream must be set
6 pub logs: Option<bool>,
7 /// Attach to the container. If unset, and logs is set, only the container's logs will be sent. At least one of stream or logs must be set
8 pub stream: Option<bool>,
9 /// Attach to container STDOUT
10 pub stdout: Option<bool>,
11 /// Attach to container STDERR
12 pub stderr: Option<bool>,
13 /// Attach to container STDIN
14 pub stdin: Option<bool>,
15}