pub struct GcSummary {
pub reaped: Vec<String>,
pub kept_dirty: Vec<(String, String)>,
}Expand description
Outcome of one dead-row GC pass (x-b1aa), for the fno agents reap report
and tests. reaped lists the rows actually removed (by short_id, else name);
kept_dirty is (id, worktree_path) for each row kept because its worktree
has uncommitted changes (or the cleanliness probe failed), so the verb can
surface the path for the operator to clean up.
Fields§
§reaped: Vec<String>§kept_dirty: Vec<(String, String)>Trait Implementations§
impl StructuralPartialEq for GcSummary
Auto Trait Implementations§
impl Freeze for GcSummary
impl RefUnwindSafe for GcSummary
impl Send for GcSummary
impl Sync for GcSummary
impl Unpin for GcSummary
impl UnsafeUnpin for GcSummary
impl UnwindSafe for GcSummary
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