pub struct PullOptionsBuilder { /* private fields */ }
Implementations§
Source§impl PullOptionsBuilder
impl PullOptionsBuilder
Sourcepub fn image<I>(&mut self, img: I) -> &mut Self
pub fn image<I>(&mut self, img: I) -> &mut Self
Name of the image to pull. The name may include a tag or digest.
This parameter may only be used when pulling an image.
If an untagged value is provided and no tag
is provided, all
tags will be pulled
The pull is cancelled if the HTTP connection is closed.
pub fn src<S>(&mut self, s: S) -> &mut Self
Sourcepub fn repo<R>(&mut self, r: R) -> &mut Self
pub fn repo<R>(&mut self, r: R) -> &mut Self
Repository name given to an image when it is imported. The repo may include a tag. This parameter may only be used when importing an image.
By default a latest
tag is added when calling
PullOptionsBuilder::default(PullOptionsBuilder::default].
Sourcepub fn tag<T>(&mut self, t: T) -> &mut Self
pub fn tag<T>(&mut self, t: T) -> &mut Self
Tag or digest. If empty when pulling an image, this causes all tags for the given image to be pulled.
pub fn auth(&mut self, auth: RegistryAuth) -> &mut Self
pub fn build(&mut self) -> PullOptions
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PullOptionsBuilder
impl RefUnwindSafe for PullOptionsBuilder
impl Send for PullOptionsBuilder
impl Sync for PullOptionsBuilder
impl Unpin for PullOptionsBuilder
impl UnwindSafe for PullOptionsBuilder
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