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
9
10
11
12
13
#[derive(Default)]
pub struct ContainerCommitOptions<'a> {
    pub author: Option<&'a str>,
    pub changes: Option<Vec<&'a str>>,
    pub comment: Option<&'a str>,
    pub container: &'a str,
    pub format: Option<&'a str>,
    pub pause: Option<bool>,
    pub repo: Option<&'a str>,
    pub squash: Option<bool>,
    pub stream: Option<bool>,
    pub tag: Option<&'a str>,
}