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}