pub struct ImagePullLibpod<'a> {
pub x_registry_auth: Option<&'a str>,
pub reference: Option<&'a str>,
pub quiet: Option<bool>,
pub compat_mode: Option<bool>,
pub arch: Option<&'a str>,
pub os: Option<&'a str>,
pub variant: Option<&'a str>,
pub policy: Option<&'a str>,
pub tls_verify: Option<bool>,
pub all_tags: Option<bool>,
}
Available on crate feature
v4
only.Fields§
§x_registry_auth: Option<&'a str>
base-64 encoded auth config. Must include the following four values: username, password, email and server address OR simply just an identity token.
reference: Option<&'a str>
Mandatory reference to the image (e.g., quay.io/image/name:tag)
quiet: Option<bool>
silences extra stream data on pull
compat_mode: Option<bool>
Return the same JSON payload as the Docker-compat endpoint.
arch: Option<&'a str>
Pull image for the specified architecture.
os: Option<&'a str>
Pull image for the specified operating system.
variant: Option<&'a str>
Pull image for the specified variant.
policy: Option<&'a str>
Pull policy, “always” (default), “missing”, “newer”, “never”.
tls_verify: Option<bool>
Require TLS verification.
Pull all tagged images in the repository.
Trait Implementations§
Source§impl<'a> Debug for ImagePullLibpod<'a>
impl<'a> Debug for ImagePullLibpod<'a>
Source§impl<'a> Default for ImagePullLibpod<'a>
impl<'a> Default for ImagePullLibpod<'a>
Source§fn default() -> ImagePullLibpod<'a>
fn default() -> ImagePullLibpod<'a>
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl<'a> Freeze for ImagePullLibpod<'a>
impl<'a> RefUnwindSafe for ImagePullLibpod<'a>
impl<'a> Send for ImagePullLibpod<'a>
impl<'a> Sync for ImagePullLibpod<'a>
impl<'a> Unpin for ImagePullLibpod<'a>
impl<'a> UnwindSafe for ImagePullLibpod<'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