podman_rest_client/v5/params/
container_resize_libpod.rs

1#[derive(Default, Debug)]
2pub struct ContainerResizeLibpod {
3    /// Height to set for the terminal, in characters
4    pub h: Option<i64>,
5    /// Width to set for the terminal, in characters
6    pub w: Option<i64>,
7}