pub struct ImageDiskEntry {
pub id: String,
pub repo_tags: Vec<String>,
pub size: i64,
pub shared_size: i64,
pub created: DateTime<Utc>,
}Expand description
A single image in a DiskUsage breakdown.
Fields§
§id: StringImage identifier.
Repository tags pointing at the image.
size: i64Unique size in bytes (excluding shared layers).
Size in bytes shared with other images.
created: DateTime<Utc>Image creation time.
Trait Implementations§
Source§impl Clone for ImageDiskEntry
impl Clone for ImageDiskEntry
Source§fn clone(&self) -> ImageDiskEntry
fn clone(&self) -> ImageDiskEntry
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 ImageDiskEntry
impl Debug for ImageDiskEntry
impl Eq for ImageDiskEntry
Source§impl PartialEq for ImageDiskEntry
impl PartialEq for ImageDiskEntry
impl StructuralPartialEq for ImageDiskEntry
Auto Trait Implementations§
impl Freeze for ImageDiskEntry
impl RefUnwindSafe for ImageDiskEntry
impl Send for ImageDiskEntry
impl Sync for ImageDiskEntry
impl Unpin for ImageDiskEntry
impl UnsafeUnpin for ImageDiskEntry
impl UnwindSafe for ImageDiskEntry
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