pub struct ImagePush<'a> {
    pub x_registry_auth: Option<&'a str>,
    pub tag: Option<&'a str>,
    pub all: Option<bool>,
    pub compress: Option<bool>,
    pub destination: Option<&'a str>,
}Available on crate feature 
v4 only.Fields§
§x_registry_auth: Option<&'a str>A base64-encoded auth configuration.
tag: Option<&'a str>The tag to associate with the image on the registry.
all: Option<bool>All indicates whether to push all images related to the image list
compress: Option<bool>use compression on image
destination: Option<&'a str>destination name for the image being pushed
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for ImagePush<'a>
impl<'a> RefUnwindSafe for ImagePush<'a>
impl<'a> Send for ImagePush<'a>
impl<'a> Sync for ImagePush<'a>
impl<'a> Unpin for ImagePush<'a>
impl<'a> UnwindSafe for ImagePush<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more