pub struct CreateImageOptions<T>where
    T: AsRef<str>,
{ pub from_image: T, pub from_src: T, pub repo: T, pub tag: T, pub platform: T, }
Expand description

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§

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.