pub struct VacuumReport {Show 14 fields
pub table_version: u64,
pub older_than: DateTime<Utc>,
pub mode: VacuumMode,
pub artifacts: Vec<VacuumArtifact>,
pub considered_files: usize,
pub retained_files: usize,
pub removable_files: usize,
pub deleted_files: usize,
pub already_absent_files: usize,
pub considered_bytes: u128,
pub retained_bytes: u128,
pub removable_bytes: u128,
pub deleted_bytes: u128,
pub already_absent_bytes: u128,
}Expand description
Structured result of one vacuum invocation.
Fields§
§table_version: u64Latest validated transaction-log version used for deletion safety.
older_than: DateTime<Utc>Required exclusive upper bound on removable file modification times.
mode: VacuumModeRequested vacuum behavior.
artifacts: Vec<VacuumArtifact>Every regular file considered below data/ and _coverage/.
considered_files: usizeNumber of files considered by this invocation.
retained_files: usizeNumber of files retained by this invocation.
removable_files: usizeNumber of files reported as removable by dry-run.
deleted_files: usizeNumber of files removed by apply mode.
already_absent_files: usizeNumber of candidates already absent when apply checked or removed them.
considered_bytes: u128Bytes across every considered file.
retained_bytes: u128Bytes retained by this invocation.
removable_bytes: u128Bytes reported as removable by dry-run.
deleted_bytes: u128Bytes removed by apply mode.
already_absent_bytes: u128Bytes last observed for candidates already absent during apply.
Trait Implementations§
Source§impl Clone for VacuumReport
impl Clone for VacuumReport
Source§fn clone(&self) -> VacuumReport
fn clone(&self) -> VacuumReport
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 VacuumReport
impl Debug for VacuumReport
impl Eq for VacuumReport
Source§impl PartialEq for VacuumReport
impl PartialEq for VacuumReport
impl StructuralPartialEq for VacuumReport
Auto Trait Implementations§
impl Freeze for VacuumReport
impl RefUnwindSafe for VacuumReport
impl Send for VacuumReport
impl Sync for VacuumReport
impl Unpin for VacuumReport
impl UnsafeUnpin for VacuumReport
impl UnwindSafe for VacuumReport
Blanket Implementations§
impl<T> Allocation for T
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more