pub struct ImageInfo {
pub repository: String,
pub tag: String,
pub image_id: String,
pub created: String,
pub size: String,
pub digest: Option<String>,
}
Expand description
Represents a Docker image from the output
Fields§
§repository: String
Repository name
tag: String
Tag
image_id: String
Image ID
created: String
Creation date/time
size: String
Image size
digest: Option<String>
Digest (if available)
Trait Implementations§
impl StructuralPartialEq for ImageInfo
Auto Trait Implementations§
impl Freeze for ImageInfo
impl RefUnwindSafe for ImageInfo
impl Send for ImageInfo
impl Sync for ImageInfo
impl Unpin for ImageInfo
impl UnwindSafe for ImageInfo
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