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§
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ImageName
impl RefUnwindSafe for ImageName
impl Send for ImageName
impl Sync for ImageName
impl Unpin for ImageName
impl UnwindSafe for ImageName
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