pub struct GcSummary {
pub manifests: usize,
pub freed: usize,
pub retained: usize,
}Expand description
Summary returned by gc.
Fields§
§manifests: usizeLive manifests scanned to build the mark set.
freed: usizeOrphaned slice blobs deleted.
retained: usizeSlice blobs kept because some live view still references them.
Auto Trait Implementations§
impl Freeze for GcSummary
impl RefUnwindSafe for GcSummary
impl Send for GcSummary
impl Sync for GcSummary
impl Unpin for GcSummary
impl UnsafeUnpin for GcSummary
impl UnwindSafe for GcSummary
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