pub type PullOptionsBuilder = PullOptionsBuilder;
👎Deprecated since 0.8.0: Please use
docker_sdk::image::PullOptionsBuilder
. This will be removed in 0.9.0.Aliased Type§
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.