Enum docker_api::api::image::opts::ImageName [−][src]
pub enum ImageName {
Tag {
image: String,
tag: Option<String>,
},
Id(String),
Digest {
image: String,
digest: String,
},
}Expand description
All forms that the image identifier can take.
Variants
Tag
<image>[:<tag>]
Id(String)
Tuple Fields
0: String<image-id>
Digest
<image@digest>
Implementations
Create a Tag variant of image name.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for ImageName
impl UnwindSafe for ImageName
Blanket Implementations
Mutably borrows from an owned value. Read more
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
