Struct fxprof_processed_profile::FrameInfo
source · pub struct FrameInfo {
pub frame: Frame,
pub category_pair: CategoryPairHandle,
pub flags: FrameFlags,
}
Expand description
All the information about a single stack frame.
Fields§
§frame: Frame
The absolute address or label of this frame.
category_pair: CategoryPairHandle
The category pair of this frame.
flags: FrameFlags
The flags of this frame. Use FrameFlags::empty()
if unsure.
Trait Implementations§
source§impl Ord for FrameInfo
impl Ord for FrameInfo
source§impl PartialEq<FrameInfo> for FrameInfo
impl PartialEq<FrameInfo> for FrameInfo
source§impl PartialOrd<FrameInfo> for FrameInfo
impl PartialOrd<FrameInfo> for FrameInfo
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 moreimpl Eq for FrameInfo
impl StructuralEq for FrameInfo
impl StructuralPartialEq for FrameInfo
Auto Trait Implementations§
impl RefUnwindSafe for FrameInfo
impl Send for FrameInfo
impl Sync for FrameInfo
impl Unpin for FrameInfo
impl UnwindSafe for FrameInfo
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more