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
13
#[derive(Default, Debug)]
pub struct ImagePush<'a> {
    /// A base64-encoded auth configuration.
    pub x_registry_auth: Option<&'a str>,
    /// The tag to associate with the image on the registry.
    pub tag: Option<&'a str>,
    /// All indicates whether to push all images related to the image list
    pub all: Option<bool>,
    /// use compression on image
    pub compress: Option<bool>,
    /// destination name for the image being pushed
    pub destination: Option<&'a str>,
}