pub struct CleanReport {
pub removed: Vec<Entry>,
pub protected: Vec<Entry>,
pub dry_run: bool,
}Expand description
What a clean did, or would do.
Fields§
§removed: Vec<Entry>§protected: Vec<Entry>Entries that were past the keep window but survive because a published bundle names them. Reported rather than silent — an unexplained survivor reads as a bug in the retention.
dry_run: boolImplementations§
Source§impl CleanReport
impl CleanReport
pub fn bytes_removed(&self) -> u64
Trait Implementations§
Source§impl Debug for CleanReport
impl Debug for CleanReport
Source§impl Default for CleanReport
impl Default for CleanReport
Source§fn default() -> CleanReport
fn default() -> CleanReport
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for CleanReport
impl RefUnwindSafe for CleanReport
impl Send for CleanReport
impl Sync for CleanReport
impl Unpin for CleanReport
impl UnsafeUnpin for CleanReport
impl UnwindSafe for CleanReport
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