pub trait StackProfileExt {
// Required methods
fn to_mzfg(&self, symbolize: bool, header_extra: &[(&str, &str)]) -> String;
fn to_pprof(
&self,
sample_type: (&str, &str),
period_type: (&str, &str),
anno_key: Option<String>,
) -> Vec<u8> ⓘ;
}Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".