Skip to main content

CleanupOutcome

Struct CleanupOutcome 

Source
pub struct CleanupOutcome {
    pub dry_run: bool,
    pub finalized: Vec<FinalizedInstance>,
    pub orphan_workspaces: Vec<Utf8PathBuf>,
    pub dead_state: Vec<Utf8PathBuf>,
    pub purged_checkpoints: Vec<PurgedCheckpoints>,
    pub pruned: Vec<PrunedRev>,
    pub pinned_by_checkpoints: usize,
    pub pinned_by_archived: usize,
    pub warnings: Vec<String>,
}
Expand description

What one cleanup pass did, or would do under --dry-run. Garbage collection has to be reportable to be trustworthy: every list here is something that disappeared (or would).

Fields§

§dry_run: bool§finalized: Vec<FinalizedInstance>

Instances whose workspace was gone, so newgit finished the teardown.

§orphan_workspaces: Vec<Utf8PathBuf>

Workspace directories with no binding record at all.

§dead_state: Vec<Utf8PathBuf>

Dead PID files and state directories for instances that are gone.

§purged_checkpoints: Vec<PurgedCheckpoints>

Checkpoint logs discarded because their instance is archived and the caller asked for it. Empty unless purging was requested.

§pruned: Vec<PrunedRev>§pinned_by_checkpoints: usize

Lane revs kept alive solely because a checkpoint still points at them — the constraint pruning must never violate, surfaced so the retained disk is explained rather than mysterious.

§pinned_by_archived: usize

How many of those belong to instances that are already archived — the ones --purge-archived can release.

§warnings: Vec<String>

Implementations§

Trait Implementations§

Source§

impl Clone for CleanupOutcome

Source§

fn clone(&self) -> CleanupOutcome

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for CleanupOutcome

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for CleanupOutcome

Source§

fn default() -> CleanupOutcome

Returns the “default value” for a type. Read more
Source§

impl Eq for CleanupOutcome

Source§

impl PartialEq for CleanupOutcome

Source§

fn eq(&self, other: &CleanupOutcome) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl StructuralPartialEq for CleanupOutcome

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, !>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.