pub struct MemoryLeakDetector { /* private fields */ }Expand description
Memory leak detector for tracking allocations and preventing leaks
Implementations§
Source§impl MemoryLeakDetector
impl MemoryLeakDetector
Sourcepub fn new(config: MemoryLeakConfig) -> Self
pub fn new(config: MemoryLeakConfig) -> Self
Create a new memory leak detector
Sourcepub fn track_allocation<T>(
&self,
size: usize,
location: &'static str,
) -> TrackedAllocation<'_>
pub fn track_allocation<T>( &self, size: usize, location: &'static str, ) -> TrackedAllocation<'_>
Track a new allocation
Sourcepub fn check_leaks(&self) -> Vec<AllocationInfo>
pub fn check_leaks(&self) -> Vec<AllocationInfo>
Check for potential memory leaks
Sourcepub fn get_stats(&self) -> MemoryStats
pub fn get_stats(&self) -> MemoryStats
Get current allocation statistics
Trait Implementations§
Auto Trait Implementations§
impl !Freeze for MemoryLeakDetector
impl RefUnwindSafe for MemoryLeakDetector
impl Send for MemoryLeakDetector
impl Sync for MemoryLeakDetector
impl Unpin for MemoryLeakDetector
impl UnwindSafe for MemoryLeakDetector
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more