podman_rest_client/v5/params/
container_archive_libpod.rs

1#[derive(Default, Debug)]
2pub struct ContainerArchiveLibpod<'a> {
3    /// Path to a directory in the container to extract
4    pub path: &'a str,
5    /// JSON encoded map[string]string to translate paths
6    pub rename: Option<&'a str>,
7}