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 ManifestPushLibpod<'a> {
    /// add existing instances with requested compression algorithms to manifest list
    pub add_compression: Option<Vec<&'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>,
    /// push all images
    pub all: Option<bool>,
    /// Require HTTPS and verify signatures when contacting registries.
    pub tls_verify: Option<bool>,
    /// silences extra stream data on push
    pub quiet: Option<bool>,
}