Enum fxprof_processed_profile::Frame
source · pub enum Frame {
InstructionPointer(u64),
ReturnAddress(u64),
Label(StringHandle),
}
Expand description
A single stack frame.
Variants§
InstructionPointer(u64)
A code address taken from the instruction pointer
ReturnAddress(u64)
A code address taken from a return address
Label(StringHandle)
A string, containing an index returned by Profile::intern_string
Trait Implementations§
source§impl Ord for Frame
impl Ord for Frame
source§impl PartialEq<Frame> for Frame
impl PartialEq<Frame> for Frame
source§impl PartialOrd<Frame> for Frame
impl PartialOrd<Frame> for Frame
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read more