pub struct BumpStats {
pub allocations: u64,
pub bytes_used: u64,
pub bytes_wasted: u64,
pub peak_bytes: u64,
pub chunk_count: u64,
}Expand description
Snapshot of runtime counters.
Fields§
§allocations: u64§bytes_used: u64§bytes_wasted: u64§peak_bytes: u64§chunk_count: u64Trait Implementations§
impl Copy for BumpStats
impl Eq for BumpStats
impl StructuralPartialEq for BumpStats
Auto Trait Implementations§
impl Freeze for BumpStats
impl RefUnwindSafe for BumpStats
impl Send for BumpStats
impl Sync for BumpStats
impl Unpin for BumpStats
impl UnsafeUnpin for BumpStats
impl UnwindSafe for BumpStats
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