pub struct PackInstallRecoverReport {
pub intents_seen: u64,
pub completed: u64,
pub aborted: u64,
pub cleaned_stale_completed: u64,
pub skipped_in_progress: u64,
pub orphan_staging_swept: u64,
pub quarantined: u64,
pub errors: u64,
}Expand description
Summary of recovery work performed.
Fields§
§intents_seen: u64§completed: u64§aborted: u64§cleaned_stale_completed: u64§skipped_in_progress: u64Non-expired intents left alone (likely a concurrent live install).
orphan_staging_swept: u64Orphan .staging/<id> directories removed (no matching intent, past TTL).
quarantined: u64Malformed / unknown-version intents moved to quarantine.
errors: u64Trait Implementations§
Source§impl Clone for PackInstallRecoverReport
impl Clone for PackInstallRecoverReport
Source§fn clone(&self) -> PackInstallRecoverReport
fn clone(&self) -> PackInstallRecoverReport
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 PackInstallRecoverReport
impl Debug for PackInstallRecoverReport
Source§impl Default for PackInstallRecoverReport
impl Default for PackInstallRecoverReport
Source§fn default() -> PackInstallRecoverReport
fn default() -> PackInstallRecoverReport
Returns the “default value” for a type. Read more
impl Eq for PackInstallRecoverReport
Source§impl PartialEq for PackInstallRecoverReport
impl PartialEq for PackInstallRecoverReport
impl StructuralPartialEq for PackInstallRecoverReport
Auto Trait Implementations§
impl Freeze for PackInstallRecoverReport
impl RefUnwindSafe for PackInstallRecoverReport
impl Send for PackInstallRecoverReport
impl Sync for PackInstallRecoverReport
impl Unpin for PackInstallRecoverReport
impl UnsafeUnpin for PackInstallRecoverReport
impl UnwindSafe for PackInstallRecoverReport
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