pub struct StackTraceEntry {
pub function_name: Rc<str>,
pub module_name: Rc<str>,
pub location: Location,
}
Expand description
An entry of a stack trace.
Fields§
§function_name: Rc<str>
The name of the current function.
module_name: Rc<str>
The name of the module the function was in.
location: Location
The source location in the module.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for StackTraceEntry
impl RefUnwindSafe for StackTraceEntry
impl !Send for StackTraceEntry
impl !Sync for StackTraceEntry
impl Unpin for StackTraceEntry
impl UnwindSafe for StackTraceEntry
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