Struct gdb_command::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
sourceimpl Clone for StacktraceEntry
impl Clone for StacktraceEntry
sourcefn clone(&self) -> StacktraceEntry
fn clone(&self) -> StacktraceEntry
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for StacktraceEntry
impl Debug for StacktraceEntry
sourceimpl Default for StacktraceEntry
impl Default for StacktraceEntry
sourcefn default() -> StacktraceEntry
fn default() -> StacktraceEntry
Returns the “default value” for a type. Read more
sourceimpl Hash for StacktraceEntry
impl Hash for StacktraceEntry
sourceimpl 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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more