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 duplicate 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 for FrameDebugInfo
impl PartialEq for FrameDebugInfo
impl Eq for FrameDebugInfo
impl StructuralPartialEq for FrameDebugInfo
Auto Trait Implementations§
impl Freeze for FrameDebugInfo
impl RefUnwindSafe for FrameDebugInfo
impl Send for FrameDebugInfo
impl Sync for FrameDebugInfo
impl Unpin for FrameDebugInfo
impl UnwindSafe for FrameDebugInfo
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