podman-rest-client 0.13.0

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