podman_rest_client/v5/params/
exec_resize.rs

1#[derive(Default, Debug)]
2pub struct ExecResize {
3    /// Height of the TTY session in characters
4    pub h: Option<i64>,
5    /// Width of the TTY session in characters
6    pub w: Option<i64>,
7    /// Ignore containers not running errors
8    pub running: Option<bool>,
9}