Struct gdb_command::stacktrace::StacktraceEntry
source · 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: u64
Function address
function: String
Function name
module: String
Module name
offset: u64
Offset in module
debug: DebugInfo
Debug information
Implementations§
Trait Implementations§
source§impl Clone for StacktraceEntry
impl Clone for StacktraceEntry
source§fn clone(&self) -> StacktraceEntry
fn clone(&self) -> StacktraceEntry
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 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<StacktraceEntry> for StacktraceEntry
impl PartialEq<StacktraceEntry> for StacktraceEntry
impl Eq for StacktraceEntry
Auto Trait Implementations§
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