Struct shiplift::image::PullOptionsBuilder[][src]

pub struct PullOptionsBuilder { /* fields omitted */ }

Implementations

impl PullOptionsBuilder[src]

pub fn image<I>(&mut self, img: I) -> &mut Self where
    I: Into<String>, 
[src]

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 where
    S: Into<String>, 
[src]

pub fn repo<R>(&mut self, r: R) -> &mut Self where
    R: Into<String>, 
[src]

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].

pub fn tag<T>(&mut self, t: T) -> &mut Self where
    T: Into<String>, 
[src]

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[src]

pub fn build(&mut self) -> PullOptions[src]

Trait Implementations

impl Default for PullOptionsBuilder[src]

Auto Trait Implementations

impl RefUnwindSafe for PullOptionsBuilder

impl Send for PullOptionsBuilder

impl Sync for PullOptionsBuilder

impl Unpin for PullOptionsBuilder

impl UnwindSafe for PullOptionsBuilder

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.