pub struct RemovedImage {
pub reference: String,
pub freed_bytes: u64,
pub objects_removed: usize,
}Expand description
One image clear removed, and what removing it freed.
Fields§
§reference: StringThe reference it was held under.
freed_bytes: u64Bytes freed by removing it — its exclusive bytes, never its total.
objects_removed: usizeHow many objects were removed from the filesystem.
Trait Implementations§
Source§impl Clone for RemovedImage
impl Clone for RemovedImage
Source§fn clone(&self) -> RemovedImage
fn clone(&self) -> RemovedImage
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 RemovedImage
impl Debug for RemovedImage
Auto Trait Implementations§
impl Freeze for RemovedImage
impl RefUnwindSafe for RemovedImage
impl Send for RemovedImage
impl Sync for RemovedImage
impl Unpin for RemovedImage
impl UnsafeUnpin for RemovedImage
impl UnwindSafe for RemovedImage
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