podman_rest_client/v4/params/image_import_libpod.rs
1#[derive(Default, Debug)]
2pub struct ImageImportLibpod<'a> {
3    pub content_type: Option<&'a str>,
4    /// Apply the following possible instructions to the created image: CMD | ENTRYPOINT | ENV | EXPOSE | LABEL | STOPSIGNAL | USER | VOLUME | WORKDIR.  JSON encoded string
5    pub changes: Option<Vec<&'a str>>,
6    /// Set commit message for imported image
7    pub message: Option<&'a str>,
8    /// Optional Name[:TAG] for the image
9    pub reference: Option<&'a str>,
10    /// Load image from the specified URL
11    pub url: Option<&'a str>,
12}