pub struct ImagePushLibpod<'a> {
    pub x_registry_auth: Option<&'a str>,
    pub destination: Option<&'a str>,
    pub force_compression_format: Option<bool>,
    pub tls_verify: Option<bool>,
    pub quiet: Option<bool>,
}Available on crate feature 
v4 only.Fields§
§x_registry_auth: Option<&'a str>A base64-encoded auth configuration.
destination: Option<&'a str>Allows for pushing the image to a different destination than the image refers to.
force_compression_format: Option<bool>Enforce compressing the layers with the specified –compression and do not reuse differently compressed blobs on the registry.
tls_verify: Option<bool>Require TLS verification.
quiet: Option<bool>silences extra stream data on push
Trait Implementations§
Source§impl<'a> Debug for ImagePushLibpod<'a>
 
impl<'a> Debug for ImagePushLibpod<'a>
Source§impl<'a> Default for ImagePushLibpod<'a>
 
impl<'a> Default for ImagePushLibpod<'a>
Source§fn default() -> ImagePushLibpod<'a>
 
fn default() -> ImagePushLibpod<'a>
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl<'a> Freeze for ImagePushLibpod<'a>
impl<'a> RefUnwindSafe for ImagePushLibpod<'a>
impl<'a> Send for ImagePushLibpod<'a>
impl<'a> Sync for ImagePushLibpod<'a>
impl<'a> Unpin for ImagePushLibpod<'a>
impl<'a> UnwindSafe for ImagePushLibpod<'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