Struct samply_symbols::FrameDebugInfo
source · pub struct FrameDebugInfo {
pub function: Option<String>,
pub file_path: Option<SourceFilePath>,
pub line_number: Option<u32>,
}Expand description
The debug information (function name, file path, line number) for a single frame at the looked-up address.
Fields§
§function: Option<String>The function name for this frame, if known.
file_path: Option<SourceFilePath>The SourceFilePath for this frame, if known.
line_number: Option<u32>The line number for this frame, if known.
Trait Implementations§
source§impl Clone for FrameDebugInfo
impl Clone for FrameDebugInfo
source§fn clone(&self) -> FrameDebugInfo
fn clone(&self) -> FrameDebugInfo
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for FrameDebugInfo
impl Debug for FrameDebugInfo
source§impl PartialEq<FrameDebugInfo> for FrameDebugInfo
impl PartialEq<FrameDebugInfo> for FrameDebugInfo
source§fn eq(&self, other: &FrameDebugInfo) -> bool
fn eq(&self, other: &FrameDebugInfo) -> bool
This method tests for
self and other values to be equal, and is used
by ==.