1#[derive(Default, Debug)] 2pub struct PutContainerArchiveLibpod<'a> { 3 /// Path to a directory in the container to extract 4 pub path: &'a str, 5 /// pause the container while copying (defaults to true) 6 pub pause: Option<bool>, 7}