pub struct BlobGcSweep {
pub plan: BlobGcPlan,
pub deleted_blobs: usize,
pub deleted_blob_bytes: u64,
}Expand description
Result of sweeping a blob garbage-collection plan.
Fields§
§plan: BlobGcPlanPlan used to decide which candidate blobs were unreachable.
deleted_blobs: usizeNumber of blobs deleted from the backing blob store.
deleted_blob_bytes: u64Blob bytes deleted from the backing blob store.
Trait Implementations§
Source§impl Clone for BlobGcSweep
impl Clone for BlobGcSweep
Source§fn clone(&self) -> BlobGcSweep
fn clone(&self) -> BlobGcSweep
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 BlobGcSweep
impl Debug for BlobGcSweep
Source§impl Default for BlobGcSweep
impl Default for BlobGcSweep
Source§fn default() -> BlobGcSweep
fn default() -> BlobGcSweep
Returns the “default value” for a type. Read more
impl Eq for BlobGcSweep
Source§impl PartialEq for BlobGcSweep
impl PartialEq for BlobGcSweep
impl StructuralPartialEq for BlobGcSweep
Auto Trait Implementations§
impl Freeze for BlobGcSweep
impl RefUnwindSafe for BlobGcSweep
impl Send for BlobGcSweep
impl Sync for BlobGcSweep
impl Unpin for BlobGcSweep
impl UnsafeUnpin for BlobGcSweep
impl UnwindSafe for BlobGcSweep
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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