pub struct ImageInspect {
pub created: String,
pub docker_version: String,
pub labels: HashMap<String, String>,
pub architecture: String,
pub os: String,
pub layers: Vec<String>,
pub env: Vec<String>,
}Expand description
A struct representing Inspect output (Something like ‘docker inspect’, ‘skopeo inspect’)
Fields§
§created: String§docker_version: String§labels: HashMap<String, String>§architecture: String§os: String§layers: Vec<String>§env: Vec<String>Trait Implementations§
Source§impl Debug for ImageInspect
impl Debug for ImageInspect
Auto Trait Implementations§
impl Freeze for ImageInspect
impl RefUnwindSafe for ImageInspect
impl Send for ImageInspect
impl Sync for ImageInspect
impl Unpin for ImageInspect
impl UnsafeUnpin for ImageInspect
impl UnwindSafe for ImageInspect
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