pub struct GarbageCollectionResult {
pub total_objects: u64,
pub referenced_objects: u64,
pub removed_objects: u64,
pub bytes_freed: u64,
pub duration: Duration,
}Fields§
§total_objects: u64§referenced_objects: u64§removed_objects: u64§bytes_freed: u64§duration: DurationTrait Implementations§
Source§impl Debug for GarbageCollectionResult
impl Debug for GarbageCollectionResult
Source§impl Default for GarbageCollectionResult
impl Default for GarbageCollectionResult
Source§fn default() -> GarbageCollectionResult
fn default() -> GarbageCollectionResult
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GarbageCollectionResult
impl RefUnwindSafe for GarbageCollectionResult
impl Send for GarbageCollectionResult
impl Sync for GarbageCollectionResult
impl Unpin for GarbageCollectionResult
impl UnsafeUnpin for GarbageCollectionResult
impl UnwindSafe for GarbageCollectionResult
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