podman_rest_client/v4/params/
put_container_archive.rs

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