pub struct ImagePruneResult {
pub images_deleted: Vec<DeletedImage>,
pub space_reclaimed: u64,
}
Expand description
Result from image prune operation
Fields§
§images_deleted: Vec<DeletedImage>
List of deleted images
space_reclaimed: u64
Total space reclaimed in bytes
Trait Implementations§
Source§impl Clone for ImagePruneResult
impl Clone for ImagePruneResult
Source§fn clone(&self) -> ImagePruneResult
fn clone(&self) -> ImagePruneResult
Returns a duplicate of the value. Read more
1.0.0 · 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 ImagePruneResult
impl Debug for ImagePruneResult
Source§impl<'de> Deserialize<'de> for ImagePruneResult
impl<'de> Deserialize<'de> for ImagePruneResult
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
Auto Trait Implementations§
impl Freeze for ImagePruneResult
impl RefUnwindSafe for ImagePruneResult
impl Send for ImagePruneResult
impl Sync for ImagePruneResult
impl Unpin for ImagePruneResult
impl UnwindSafe for ImagePruneResult
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