pub struct CleanupReport {
pub scanned: usize,
pub deleted: usize,
pub skipped: usize,
pub scan_limit_reached: bool,
}Expand description
Safe aggregate result from one retention pass.
Fields§
§scanned: usizeOwnership entries inspected.
deleted: usizeVerified owned artifacts and markers removed.
skipped: usizeInvalid, changed, missing, or otherwise non-deletable records.
scan_limit_reached: boolWhether the scan stopped at its configured entry bound.
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 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for CleanupReport
Source§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
impl Eq for CleanupReport
Source§impl PartialEq for CleanupReport
impl PartialEq for CleanupReport
impl StructuralPartialEq for CleanupReport
Auto Trait Implementations§
impl Freeze for CleanupReport
impl RefUnwindSafe for CleanupReport
impl Send for CleanupReport
impl Sync for CleanupReport
impl Unpin for CleanupReport
impl UnsafeUnpin 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