podman_rest_client/v4/params/manifest_push_libpod.rs
1#[derive(Default, Debug)]
2pub struct ManifestPushLibpod<'a> {
3 /// add existing instances with requested compression algorithms to manifest list
4 pub add_compression: Option<Vec<&'a str>>,
5 /// Enforce compressing the layers with the specified --compression and do not reuse differently compressed blobs on the registry.
6 pub force_compression_format: Option<bool>,
7 /// push all images
8 pub all: Option<bool>,
9 /// Require HTTPS and verify signatures when contacting registries.
10 pub tls_verify: Option<bool>,
11 /// silences extra stream data on push
12 pub quiet: Option<bool>,
13}