pub trait StackedRecord: Record {
// Required methods
fn stack(&self) -> &Stack;
fn stack_mut(&mut self) -> &mut Stack;
}Expand description
A profile record with stack trace information.
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.