podman_rest_client/v4/params/image_push.rs
1#[derive(Default, Debug)]
2pub struct ImagePush<'a> {
3    /// A base64-encoded auth configuration.
4    pub x_registry_auth: Option<&'a str>,
5    /// The tag to associate with the image on the registry.
6    pub tag: Option<&'a str>,
7    /// All indicates whether to push all images related to the image list
8    pub all: Option<bool>,
9    /// use compression on image
10    pub compress: Option<bool>,
11    /// destination name for the image being pushed
12    pub destination: Option<&'a str>,
13}