podman_rest_client/v4/models/
exec_start_body.rs

1use serde::{Deserialize, Serialize};
2#[derive(Default, Debug, Serialize, Deserialize)]
3pub struct ExecStartBody {
4    /// Detach from the command. Not presently supported.
5    #[serde(rename = "Detach")]
6    pub detach: Option<bool>,
7    /// Allocate a pseudo-TTY. Presently ignored.
8    #[serde(rename = "Tty")]
9    pub tty: Option<bool>,
10}