podman_rest_client/v4/params/
image_push_libpod.rs

1#[derive(Default, Debug)]
2pub struct ImagePushLibpod<'a> {
3    /// A base64-encoded auth configuration.
4    pub x_registry_auth: Option<&'a str>,
5    /// Allows for pushing the image to a different destination than the image refers to.
6    pub destination: Option<&'a str>,
7    /// Enforce compressing the layers with the specified --compression and do not reuse differently compressed blobs on the registry.
8    pub force_compression_format: Option<bool>,
9    /// Require TLS verification.
10    pub tls_verify: Option<bool>,
11    /// silences extra stream data on push
12    pub quiet: Option<bool>,
13}