podman-rest-client 0.13.0

Interface for querying the podman REST API. Supports connections over SSH.
Documentation
1
2
3
4
5
6
7
8
9
#[derive(Default, Debug)]
pub struct PutContainerArchive<'a> {
    /// Path to a directory in the container to extract
    pub path: &'a str,
    /// if unpacking the given content would cause an existing directory to be replaced with a non-directory and vice versa (1 or true)
    pub no_overwrite_dir_non_dir: Option<&'a str>,
    /// copy UID/GID maps to the dest file or di (1 or true)
    pub copy_uidgid: Option<&'a str>,
}