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
<image>[:<tag>]
<image-id>
Tuple Fields of Id
0: String
<image@digest>
Implementations
Create a Tag
variant of image name.