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
14
15
#[derive(Default)]
pub struct ContainerRestoreOptions<'a> {
    pub name: &'a str,
    pub file_locks: Option<bool>,
    pub ignore_root_fs: Option<bool>,
    pub ignore_static_ip: Option<bool>,
    pub ignore_static_mac: Option<bool>,
    pub ignore_volumes: Option<bool>,
    pub import: Option<bool>,
    pub keep: Option<bool>,
    pub name_import: Option<&'a str>,
    pub pod: Option<&'a str>,
    pub print_stats: Option<bool>,
    pub tcp_established: Option<bool>,
}