podman-client 0.0.2

A native Rust client for the Podman REST API over Unix sockets
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#[derive(Default)]
pub struct ImagePushOptions<'a> {
    pub name: &'a str,
    pub all: Option<bool>,
    pub compression_format: Option<&'a str>,
    pub compression_level: Option<i64>,
    pub destination: Option<&'a str>,
    pub force_compression_format: Option<bool>,
    pub format: Option<&'a str>,
    pub quiet: Option<bool>,
    pub remove_signatures: Option<bool>,
    pub retry: Option<i64>,
    pub retry_delay: Option<&'a str>,
    pub tls_verify: Option<bool>,
    pub x_registry_auth: Option<&'a str>,
}

pub type ImagePush = String;