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 ImagePushLibpod<'a> {
    /// A base64-encoded auth configuration.
    pub x_registry_auth: Option<&'a str>,
    /// Allows for pushing the image to a different destination than the image refers to.
    pub destination: Option<&'a str>,
    /// Enforce compressing the layers with the specified --compression and do not reuse differently compressed blobs on the registry.
    pub force_compression_format: Option<bool>,
    /// Require TLS verification.
    pub tls_verify: Option<bool>,
    /// silences extra stream data on push
    pub quiet: Option<bool>,
}