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, }
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

Serialize this value into the given Serde serializer. 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

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

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.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more