Trait loupe::MemoryUsageTracker[][src]

pub trait MemoryUsageTracker {
    fn track(&mut self, address: *const ()) -> bool;
}
Expand description

Represent a bucket that can track memory addresses that have already been visited by MemoryUsage.

Required methods

When first called on a given address returns true, false otherwise.

Implementations on Foreign Types

Implementors