pub struct DebugStats {
pub total_allocations: usize,
pub active_checkpoints: usize,
pub current_checkpoint_id: usize,
pub corrupted_allocations: usize,
pub leak_reports: usize,
}Fields§
§total_allocations: usize§active_checkpoints: usize§current_checkpoint_id: usize§corrupted_allocations: usize§leak_reports: usizeNumber of leak reports generated
Trait Implementations§
Source§impl Clone for DebugStats
impl Clone for DebugStats
Source§fn clone(&self) -> DebugStats
fn clone(&self) -> DebugStats
Returns a duplicate of the value. Read more
1.0.0 · 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 DebugStats
impl Debug for DebugStats
Source§impl Default for DebugStats
impl Default for DebugStats
Source§fn default() -> DebugStats
fn default() -> DebugStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for DebugStats
impl RefUnwindSafe for DebugStats
impl Send for DebugStats
impl Sync for DebugStats
impl Unpin for DebugStats
impl UnwindSafe for DebugStats
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