Struct bollard::image::CreateImageOptions
source · pub struct CreateImageOptions<T>{
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§
source§impl<T> Clone for CreateImageOptions<T>
impl<T> Clone for CreateImageOptions<T>
source§fn clone(&self) -> CreateImageOptions<T>
fn clone(&self) -> CreateImageOptions<T>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<T> Debug for CreateImageOptions<T>
impl<T> Debug for CreateImageOptions<T>
source§impl<T> Default for CreateImageOptions<T>
impl<T> Default for CreateImageOptions<T>
source§fn default() -> CreateImageOptions<T>
fn default() -> CreateImageOptions<T>
Returns the “default value” for a type. Read more
source§impl<T> PartialEq for CreateImageOptions<T>
impl<T> PartialEq for CreateImageOptions<T>
source§impl<T> Serialize for CreateImageOptions<T>
impl<T> Serialize for CreateImageOptions<T>
impl<T> StructuralPartialEq for CreateImageOptions<T>
Auto Trait Implementations§
impl<T> Freeze for CreateImageOptions<T>where
T: Freeze,
impl<T> RefUnwindSafe for CreateImageOptions<T>where
T: RefUnwindSafe,
impl<T> Send for CreateImageOptions<T>where
T: Send,
impl<T> Sync for CreateImageOptions<T>where
T: Sync,
impl<T> Unpin for CreateImageOptions<T>where
T: Unpin,
impl<T> UnwindSafe for CreateImageOptions<T>where
T: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)