pub trait GetSizeTracker {
// Required method
fn track<A>(&mut self, addr: *const A) -> bool;
}
Expand description
A tracker which makes sure that shared ownership objects are only accounted for once.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.