pub struct CleanupResult {
pub blobs_checked: usize,
pub blobs_removed: usize,
pub bytes_freed: u64,
pub removed_blobs: Vec<String>,
}Expand description
Result of a blob cleanup operation.
Fields§
§blobs_checked: usize§blobs_removed: usize§bytes_freed: u64§removed_blobs: Vec<String>Trait Implementations§
Source§impl Clone for CleanupResult
impl Clone for CleanupResult
Source§fn clone(&self) -> CleanupResult
fn clone(&self) -> CleanupResult
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 moreAuto Trait Implementations§
impl Freeze for CleanupResult
impl RefUnwindSafe for CleanupResult
impl Send for CleanupResult
impl Sync for CleanupResult
impl Unpin for CleanupResult
impl UnsafeUnpin for CleanupResult
impl UnwindSafe for CleanupResult
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