podman-client 0.0.2

A native Rust client for the Podman REST API over Unix sockets
Documentation
1
2
3
4
5
6
7
8
#[derive(Default)]
pub struct ContainerResizeOptions<'a> {
    pub name: &'a str,
    pub h: Option<i64>,
    pub w: Option<i64>,
}

pub type ContainerResize = serde_json::Value;