Struct xray_lite::StackFrame
source · pub struct StackFrame {
pub path: Option<String>,
pub line: Option<String>,
pub label: Option<String>,
}
Expand description
A summary of a single operation within a stack trace
Fields§
§path: Option<String>
The relative path to the file.
line: Option<String>
The line in the file.
label: Option<String>
The function or method name.
Trait Implementations§
source§impl Debug for StackFrame
impl Debug for StackFrame
Auto Trait Implementations§
impl RefUnwindSafe for StackFrame
impl Send for StackFrame
impl Sync for StackFrame
impl Unpin for StackFrame
impl UnwindSafe for StackFrame
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