Struct bollard::image::CreateImageOptions[][src]

pub struct CreateImageOptions<T> where
    T: Into<String> + Serialize
{ pub from_image: T, pub from_src: T, pub repo: T, pub tag: T, pub platform: T, }

Parameters available for pulling an image, used in the Create Image API

Examples

use bollard::image::CreateImageOptions;

use std::default::Default;

CreateImageOptions{
  from_image: "hello-world",
  ..Default::default()
};
CreateImageOptions::<String>{
  ..Default::default()
};

Fields

from_image: T

Name of the image to pull. The name may include a tag or digest. This parameter may only be used when pulling an image. The pull is cancelled if the HTTP connection is closed.

from_src: T

Source to import. The value may be a URL from which the image can be retrieved or - to read the image from the request body. This parameter may only be used when importing an image.

repo: T

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.

tag: T

Tag or digest. If empty when pulling an image, this causes all tags for the given image to be pulled.

platform: T

Platform in the format os[/arch[/variant]]

Trait Implementations

impl<T: Clone> Clone for CreateImageOptions<T> where
    T: Into<String> + Serialize
[src]

impl<T: Debug> Debug for CreateImageOptions<T> where
    T: Into<String> + Serialize
[src]

impl<T: Default> Default for CreateImageOptions<T> where
    T: Into<String> + Serialize
[src]

impl<T> Serialize for CreateImageOptions<T> where
    T: Into<String> + Serialize,
    T: Serialize
[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for CreateImageOptions<T> where
    T: RefUnwindSafe
[src]

impl<T> Send for CreateImageOptions<T> where
    T: Send
[src]

impl<T> Sync for CreateImageOptions<T> where
    T: Sync
[src]

impl<T> Unpin for CreateImageOptions<T> where
    T: Unpin
[src]

impl<T> UnwindSafe for CreateImageOptions<T> where
    T: UnwindSafe
[src]

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.