pub struct ImageImportLibpod<'a> {
    pub content_type: Option<&'a str>,
    pub changes: Option<Vec<&'a str>>,
    pub message: Option<&'a str>,
    pub reference: Option<&'a str>,
    pub url: Option<&'a str>,
}Available on crate feature 
v5 only.Fields§
§content_type: Option<&'a str>§changes: Option<Vec<&'a str>>Apply the following possible instructions to the created image: CMD | ENTRYPOINT | ENV | EXPOSE | LABEL | STOPSIGNAL | USER | VOLUME | WORKDIR. JSON encoded string
message: Option<&'a str>Set commit message for imported image
reference: Option<&'a str>Optional Name[:TAG] for the image
url: Option<&'a str>Load image from the specified URL
Trait Implementations§
Source§impl<'a> Debug for ImageImportLibpod<'a>
 
impl<'a> Debug for ImageImportLibpod<'a>
Source§impl<'a> Default for ImageImportLibpod<'a>
 
impl<'a> Default for ImageImportLibpod<'a>
Source§fn default() -> ImageImportLibpod<'a>
 
fn default() -> ImageImportLibpod<'a>
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl<'a> Freeze for ImageImportLibpod<'a>
impl<'a> RefUnwindSafe for ImageImportLibpod<'a>
impl<'a> Send for ImageImportLibpod<'a>
impl<'a> Sync for ImageImportLibpod<'a>
impl<'a> Unpin for ImageImportLibpod<'a>
impl<'a> UnwindSafe for ImageImportLibpod<'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