pub struct StacktraceEntry {
pub address: u64,
pub function: String,
pub module: String,
pub offset: u64,
pub debug: DebugInfo,
}Expand description
StacktraceEntry struct represents the information about one line of the stack trace.
Fields§
§address: u64Function address
function: StringFunction name
module: StringModule name
offset: u64Offset in module
debug: DebugInfoDebug information
Implementations§
Trait Implementations§
Source§impl Clone for StacktraceEntry
impl Clone for StacktraceEntry
Source§fn clone(&self) -> StacktraceEntry
fn clone(&self) -> StacktraceEntry
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 StacktraceEntry
impl Debug for StacktraceEntry
Source§impl Default for StacktraceEntry
impl Default for StacktraceEntry
Source§fn default() -> StacktraceEntry
fn default() -> StacktraceEntry
Returns the “default value” for a type. Read more
Source§impl Hash for StacktraceEntry
impl Hash for StacktraceEntry
Source§impl PartialEq for StacktraceEntry
impl PartialEq for StacktraceEntry
impl Eq for StacktraceEntry
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