pub struct ImageExportLibpod<'a> {
    pub format: Option<&'a str>,
    pub references: Option<Vec<&'a str>>,
    pub compress: Option<bool>,
    pub oci_accept_uncompressed_layers: Option<bool>,
}Available on crate feature 
v4 only.Fields§
§format: Option<&'a str>format for exported image (only docker-archive is supported)
references: Option<Vec<&'a str>>references to images to export
compress: Option<bool>use compression on image
oci_accept_uncompressed_layers: Option<bool>accept uncompressed layers when copying OCI images
Trait Implementations§
Source§impl<'a> Debug for ImageExportLibpod<'a>
 
impl<'a> Debug for ImageExportLibpod<'a>
Source§impl<'a> Default for ImageExportLibpod<'a>
 
impl<'a> Default for ImageExportLibpod<'a>
Source§fn default() -> ImageExportLibpod<'a>
 
fn default() -> ImageExportLibpod<'a>
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl<'a> Freeze for ImageExportLibpod<'a>
impl<'a> RefUnwindSafe for ImageExportLibpod<'a>
impl<'a> Send for ImageExportLibpod<'a>
impl<'a> Sync for ImageExportLibpod<'a>
impl<'a> Unpin for ImageExportLibpod<'a>
impl<'a> UnwindSafe for ImageExportLibpod<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more