pub trait JemallocProfCtlExt {
// Required methods
fn dump_stats(&mut self, json_format: bool) -> Result<String>;
fn stats(&self) -> Result<JemallocStats>;
}Required Methods§
fn dump_stats(&mut self, json_format: bool) -> Result<String>
fn stats(&self) -> Result<JemallocStats>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".