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