Struct docker_api::opts::PullOptsBuilder
source · [−]pub struct PullOptsBuilder { /* private fields */ }
Implementations
sourceimpl PullOptsBuilder
impl PullOptsBuilder
sourcepub fn image(self, image: impl Serialize) -> Self
pub fn image(self, image: impl Serialize) -> 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(self, src: impl Serialize) -> Self
sourcepub fn repo(self, repo: impl Serialize) -> Self
pub fn repo(self, repo: impl Serialize) -> 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
PullOptsBuilder::default.
sourcepub fn tag(self, tag: impl Serialize) -> Self
pub fn tag(self, tag: impl Serialize) -> Self
Tag or digest. If empty when pulling an image, this causes all tags for the given image to be pulled.
pub fn auth(self, auth: RegistryAuth) -> Self
pub fn build(self) -> PullOpts
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for PullOptsBuilder
impl Send for PullOptsBuilder
impl Sync for PullOptsBuilder
impl Unpin for PullOptsBuilder
impl UnwindSafe for PullOptsBuilder
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more