pub trait ArrangementSize {
// Required method
fn log_arrangement_size(self) -> Self;
}
Expand description
A type that can log its heap size.
Required Methods§
Sourcefn log_arrangement_size(self) -> Self
fn log_arrangement_size(self) -> Self
Install a logger to track the heap size of the target.
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.