pub struct ContentGcSweep {
pub plan: ContentGcPlan,
pub deleted_objects: usize,
pub deleted_bytes: usize,
}Expand description
Applied typed-content GC result.
Fields§
§plan: ContentGcPlan§deleted_objects: usize§deleted_bytes: usizeTrait Implementations§
Source§impl Clone for ContentGcSweep
impl Clone for ContentGcSweep
Source§fn clone(&self) -> ContentGcSweep
fn clone(&self) -> ContentGcSweep
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 ContentGcSweep
impl Debug for ContentGcSweep
Source§impl Default for ContentGcSweep
impl Default for ContentGcSweep
Source§fn default() -> ContentGcSweep
fn default() -> ContentGcSweep
Returns the “default value” for a type. Read more
impl Eq for ContentGcSweep
Source§impl PartialEq for ContentGcSweep
impl PartialEq for ContentGcSweep
impl StructuralPartialEq for ContentGcSweep
Auto Trait Implementations§
impl Freeze for ContentGcSweep
impl RefUnwindSafe for ContentGcSweep
impl Send for ContentGcSweep
impl Sync for ContentGcSweep
impl Unpin for ContentGcSweep
impl UnsafeUnpin for ContentGcSweep
impl UnwindSafe for ContentGcSweep
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