pub struct ImageSummary {
pub host: HostId,
pub topology_revision: TopologyRevision,
pub id: String,
pub repo_tags: Vec<String>,
pub repo_digests: Vec<String>,
pub created_unix_seconds: i64,
pub size_bytes: i64,
pub containers: i64,
pub labels: BTreeMap<String, String>,
}Expand description
Neutral Docker image summary.
Fields§
§host: HostIdTarget host.
topology_revision: TopologyRevisionExact topology revision.
id: StringImage ID.
Repository tags.
repo_digests: Vec<String>Repository digests.
created_unix_seconds: i64Creation time in Unix seconds.
size_bytes: i64Image size in bytes.
containers: i64Number of containers referencing the image when reported.
labels: BTreeMap<String, String>Image labels.
Trait Implementations§
Source§impl Clone for ImageSummary
impl Clone for ImageSummary
Source§fn clone(&self) -> ImageSummary
fn clone(&self) -> ImageSummary
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ImageSummary
impl Debug for ImageSummary
Source§impl<'de> Deserialize<'de> for ImageSummary
impl<'de> Deserialize<'de> for ImageSummary
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ImageSummary
impl PartialEq for ImageSummary
Source§fn eq(&self, other: &ImageSummary) -> bool
fn eq(&self, other: &ImageSummary) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ImageSummary
impl Serialize for ImageSummary
impl Eq for ImageSummary
impl StructuralPartialEq for ImageSummary
Auto Trait Implementations§
impl Freeze for ImageSummary
impl RefUnwindSafe for ImageSummary
impl Send for ImageSummary
impl Sync for ImageSummary
impl Unpin for ImageSummary
impl UnsafeUnpin for ImageSummary
impl UnwindSafe for ImageSummary
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.