podman_client/models/podman/exec/
start.rs

1use serde::Serialize;
2
3pub struct ExecStartOptions<'a> {
4    pub id: &'a str,
5    pub request: ExecStartRequest,
6}
7
8#[derive(Serialize)]
9pub struct ExecStartRequest {
10    #[serde(rename = "Detach")]
11    pub detach: bool,
12    pub h: i64,
13    #[serde(rename = "Tty")]
14    pub tty: bool,
15    pub w: i64,
16}