pub struct PruneReport {
pub deleted_runs: usize,
pub bytes_freed: u64,
pub failures: Vec<(String, String)>,
}Expand description
Outcome of executing a PrunePlan.
Fields§
§deleted_runs: usize§bytes_freed: u64§failures: Vec<(String, String)>Runs whose on-disk directory could not be removed (path + error string).
Trait Implementations§
Source§impl Clone for PruneReport
impl Clone for PruneReport
Source§fn clone(&self) -> PruneReport
fn clone(&self) -> PruneReport
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 PruneReport
impl Debug for PruneReport
Source§impl Default for PruneReport
impl Default for PruneReport
Source§fn default() -> PruneReport
fn default() -> PruneReport
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for PruneReport
impl RefUnwindSafe for PruneReport
impl Send for PruneReport
impl Sync for PruneReport
impl Unpin for PruneReport
impl UnsafeUnpin for PruneReport
impl UnwindSafe for PruneReport
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