pub struct GCStats {
pub total_collections: AllocationCount,
pub total_bytes_freed: MemorySize,
pub total_collection_time_ms: u64,
pub last_collection_time_ms: u64,
pub objects_marked: AllocationCount,
pub objects_swept: AllocationCount,
}Fields§
§total_collections: AllocationCount§total_bytes_freed: MemorySize§total_collection_time_ms: u64§last_collection_time_ms: u64§objects_marked: AllocationCount§objects_swept: AllocationCountTrait Implementations§
Auto Trait Implementations§
impl Freeze for GCStats
impl RefUnwindSafe for GCStats
impl Send for GCStats
impl Sync for GCStats
impl Unpin for GCStats
impl UnwindSafe for GCStats
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