pub struct CleanupReport {
pub files_deleted: usize,
pub bytes_freed: u64,
pub failed: Vec<String>,
}Expand description
Result of a cleanup operation.
Fields§
§files_deleted: usizeNumber of files deleted.
bytes_freed: u64Bytes freed.
failed: Vec<String>Files that failed to delete.
Trait Implementations§
Source§impl Clone for CleanupReport
impl Clone for CleanupReport
Source§fn clone(&self) -> CleanupReport
fn clone(&self) -> CleanupReport
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 CleanupReport
impl Debug for CleanupReport
Source§impl Default for CleanupReport
impl Default for CleanupReport
Source§fn default() -> CleanupReport
fn default() -> CleanupReport
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for CleanupReport
impl RefUnwindSafe for CleanupReport
impl Send for CleanupReport
impl Sync for CleanupReport
impl Unpin for CleanupReport
impl UnwindSafe for CleanupReport
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